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 for position, velocity, mass, accretion_radius in zip(
67 positions, velocities, masses, accretion_radii
68 ):
69 model.add_sink(mass, tuple(position), tuple(velocity), accretion_radius)
70
71 # Initialise the scheduler first, then set a simulation box large enough
72 model.init_scheduler(int(1e7), 1)
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 : 18.47 us (4.1%)
patch tree reduce : 1.05 us (0.2%)
gen split merge : 651.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 412.16 us (91.9%)
LB move op cnt : 0
LB apply : 10.94 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (77.4%)
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 | 1.747e-03 | 1.7% | 0.0% 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.04 us (1.3%)
patch tree reduce : 491.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 : 218.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (67.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 = (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 | 9.438e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303.538826853987 (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.23 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 196.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.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,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 | 9.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10731.891211135988 (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 : 1.98 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 188.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (67.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 | 8.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18261.2127633113 (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.11 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 209.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.6%)
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 | 8.621e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23481.62197548412 (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 : 2.04 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 361.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 165.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 = (0,0,0)
sum 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 | 8.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26386.750306465576 (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.04 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (62.9%)
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 | 8.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30144.367478319607 (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.07 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.03 us (85.5%)
LB move op cnt : 0
LB apply : 20.57 us (11.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (67.0%)
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 | 8.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29547.60936325437 (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.02 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 209.95 us (96.9%)
LB move op cnt : 0
LB apply : 1.35 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.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 = (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 | 8.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32150.699488700713 (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.02 us (0.7%)
patch tree reduce : 361.00 ns (0.1%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 275.78 us (97.3%)
LB move op cnt : 0
LB apply : 1.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (72.4%)
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 | 9.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29815.2306074705 (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.29 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36164.83583251938 (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.10 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39038.084590284 (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.20 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40395.47045855872 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.6%)
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 | 7.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36056.58216786194 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 156.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39315.47867295122 (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.08 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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.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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39611.45053808379 (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 : 1.80 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.9%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39921.22779270748 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.6%)
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 | 7.487e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38213.21292826678 (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 : 1.97 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 541.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.71 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.6%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39865.81488237266 (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.17 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40557.99544885254 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39771.637098440166 (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.06 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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.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 | 7.484e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38276.08165608598 (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.03 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (56.6%)
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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40226.545613847826 (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 : 1.85 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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.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 | 7.499e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38209.82274666533 (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.02 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.75 us (95.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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.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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39405.39202144494 (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.05 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.638e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37519.90770662094 (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 : 1.96 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40080.46384055492 (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.11 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.6%)
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 | 7.327e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39116.65505327798 (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.05 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 168.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (67.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 = (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 | 8.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35688.74800048478 (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.11 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (66.1%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40751.41320618524 (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.09 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40928.76254948764 (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 : 1.97 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 : 511.00 ns (0.3%)
LB compute : 179.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.3%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39906.34178085702 (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 : 1.92 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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 = (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 | 7.341e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39052.75155551371 (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.22 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 202.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.48 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (68.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 8.301e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34535.56867024151 (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 : 1.99 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 175.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 7.700e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37235.23173297553 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.18 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36893.36987290292 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40257.98505213507 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.31 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.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 | 7.510e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38182.08509926868 (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 : 1.78 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.57 us (96.6%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (72.0%)
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 | 7.646e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37504.140880242245 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 = (-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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40422.19811895874 (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 : 1.94 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39511.52431868897 (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 : 1.76 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 7.271e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39443.6765970743 (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 : 1.86 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41581.80111317159 (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 : 1.86 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.34 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41148.181837367214 (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.01 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.448e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38512.24236073143 (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 : 2.00 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 182.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.22 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39387.24663915464 (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 : 1.95 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40425.72709911076 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40390.364417744524 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.7%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40148.604328912705 (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 : 1.90 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.8%)
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 | 7.631e-04 | 1.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37595.67435527001 (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 : 1.72 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39587.468629440365 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.83 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.445e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38539.74297501873 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
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 | 7.315e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39223.93533140882 (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 : 1.97 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39222.04971866494 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39548.159219284295 (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.02 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 149.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 7.263e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39506.78912073201 (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 : 1.86 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 169.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.3%)
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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39824.23186605676 (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 : 2.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41358.958584389096 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41267.09219547393 (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 : 1.71 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 188.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.4%)
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 | 7.488e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38327.15827706738 (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 : 1.70 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 170.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.9%)
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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39741.9010214492 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 167.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.6%)
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 | 7.512e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38202.968678842655 (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.02 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.56 us (95.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (64.9%)
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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39371.966925307126 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.53 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 8.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35766.261141704315 (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 : 1.77 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (66.0%)
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 | 7.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35948.35762111616 (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 : 2.13 us (1.4%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.22 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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,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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40499.08181684886 (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 : 1.74 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 7.179e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39979.5985369112 (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.10 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41119.051466364734 (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 : 1.74 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.2%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39890.36719383823 (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 : 1.90 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 201.13 us (96.9%)
LB move op cnt : 0
LB apply : 1.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.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,-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 | 8.295e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34600.775238053924 (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 : 1.81 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.424e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38659.693509108816 (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 : 1.94 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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 | 7.630e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37616.74481413401 (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 : 2.04 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40040.911644311724 (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 : 1.89 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.90 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.2%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39861.284168107275 (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.00 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 165.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40694.09597437025 (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 : 1.64 us (1.0%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 470.00 ns (0.3%)
LB compute : 165.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40574.82355906785 (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 : 1.75 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.21 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41558.61200780467 (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 : 1.84 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.8%)
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 | 7.314e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39236.8752627357 (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 : 1.89 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (77.2%)
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 | 7.307e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39275.89671224205 (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 : 1.88 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39830.22806403735 (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.09 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 153.09 us (95.7%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39772.373273675556 (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.11 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41337.73436323068 (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 : 1.89 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.71 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.4%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40686.216529431054 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (53.9%)
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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42267.112629337265 (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 : 1.77 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 176.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (66.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 = (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 | 7.454e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38496.138404510704 (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 : 1.90 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.4%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39909.406577780224 (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 : 1.70 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.32 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.0%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41085.3389208529 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.5%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39681.132993632484 (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 : 1.95 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.2%)
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 | 7.126e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40261.253820192884 (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 : 1.70 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39940.88384746809 (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.10 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.0%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39067.20922108606 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.484e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38331.56756492882 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.76 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40490.93147965628 (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.10 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (67.1%)
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 | 7.353e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39011.161178195434 (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 : 1.92 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 145.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.229e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39680.1853432134 (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 : 1.92 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 164.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.421e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38650.782859981366 (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 : 1.97 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.6%)
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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40210.86441633154 (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.09 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 = (-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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41004.15341779764 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.37 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.3%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41762.91471649884 (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 : 1.88 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 177.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.8%)
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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40122.49845652275 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.34 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.1%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39651.1249459857 (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 : 1.74 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.8%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40276.77511522548 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39865.50772926164 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (63.0%)
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 | 8.304e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34528.70576848056 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (57.8%)
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 | 7.165e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40011.14167734995 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (62.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.284e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39359.6137262393 (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 : 1.85 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.5%)
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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39343.85287026842 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.84 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (58.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 = (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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40968.86457994184 (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.18 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39779.388714481276 (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 : 1.81 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 7.511e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38159.62676846761 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40952.503418613705 (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.20 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.75 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.2%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41315.59515392131 (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 : 1.92 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 174.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40108.98712572746 (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 : 1.96 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39469.64042276825 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40584.38389109187 (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 : 1.68 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40931.26760297298 (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.02 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.04 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40870.81157927525 (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 : 1.80 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 470.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39866.160067068944 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41056.52499543191 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.4%)
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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40113.10602740791 (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.40 us (1.6%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.32 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 6.953e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41210.97582411124 (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 : 1.96 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 140.46 us (95.6%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42537.16096382507 (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.06 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.05 us (88.8%)
LB move op cnt : 0
LB apply : 1.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.264e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39444.243377971965 (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 : 1.88 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40039.69326856253 (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.22 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.04 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.4%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40001.44183004942 (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 : 1.86 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.64 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.2%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40529.54234207071 (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 : 1.75 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40986.563959079205 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.0%)
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 | 7.069e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40529.63337127589 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40694.181013618894 (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.06 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40565.730677743326 (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 : 1.77 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 7.475e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38323.184955695244 (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.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.61 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39970.23874318369 (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.25 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41631.01911666276 (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 : 1.88 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 187.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39531.70738319132 (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 : 1.73 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41123.14247427031 (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 : 1.83 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.5%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40154.77284487133 (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 : 1.87 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.21 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.8%)
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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39277.91025949382 (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 : 1.78 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39712.39337276793 (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 : 1.75 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.48 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39623.28833201393 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.9%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41068.774421163296 (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 : 1.85 us (1.2%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.04 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40522.09138851197 (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.25 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.94 us (95.8%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 6.800e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42134.29556750424 (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.05 us (1.4%)
patch tree reduce : 560.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.61 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41981.30928565939 (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 : 1.74 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41349.430651940405 (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 : 1.78 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.6%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40374.77253790612 (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 : 1.74 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.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.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 | 7.487e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38273.76849684198 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.2%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39918.000525418334 (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.28 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.65 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.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 = (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 | 7.640e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37508.902731901486 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41037.6463153114 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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,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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40603.498289947966 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40027.90935278383 (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.06 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39654.39888918274 (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 : 1.95 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.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 = (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 | 6.900e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41539.344428170196 (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.18 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.47 us (95.5%)
LB move op cnt : 0
LB apply : 1.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (57.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 = (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 | 7.137e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40160.646505491815 (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 : 1.94 us (1.1%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 162.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40436.93501113778 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41295.74715339628 (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 : 1.75 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.90 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.3%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41318.96357406888 (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 : 1.71 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.90 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40075.816720952 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39700.7592358543 (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.06 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40109.20325142906 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41388.56692646338 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.87 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40596.967137361324 (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.04 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.0%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41593.90886139372 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40472.15076235832 (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 : 1.78 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41310.20302754787 (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 : 1.65 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.33 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.2%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40628.7386948295 (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.07 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.42 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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 = (-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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40673.83601783162 (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 : 1.91 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 145.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (-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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40638.182590438766 (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 : 1.71 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40718.61196573846 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41028.45314862325 (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 : 1.75 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 173.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.9%)
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 | 7.376e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38889.30061057358 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (54.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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42078.57795488308 (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.64 us (1.7%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.38 us (95.4%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42092.716623554166 (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 : 1.64 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 160.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 = (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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41328.00683598292 (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 : 1.91 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.349e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39040.01117059654 (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 : 1.72 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40214.39207383461 (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 : 1.97 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 | 8.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35258.40095864103 (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 : 1.96 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40301.10207867632 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40666.37010769314 (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 : 1.79 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40356.123614166696 (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.14 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.3%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39889.90398571062 (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 : 1.99 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.2%)
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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39490.298407541144 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.86 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42020.55782630384 (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 : 1.91 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 170.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (-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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39768.11576496982 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41235.91010155913 (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 : 1.97 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41274.25435685099 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.86 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.0%)
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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40427.31771483999 (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 : 1.85 us (0.8%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 216.76 us (97.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.5%)
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 | 8.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35337.90821610161 (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 : 1.97 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39978.62057458446 (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 : 1.84 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.9%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40983.71360277764 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.07 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41238.99623679816 (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 : 1.75 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 163.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39681.57307984808 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41601.18478873477 (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 : 1.94 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.49 us (95.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42635.63268804045 (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.14 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 7.327e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39173.34959045649 (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 : 1.85 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.0%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40328.807428541484 (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 : 1.79 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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,-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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40666.30062056747 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.6%)
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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39218.09568904694 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 152.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40826.3522821011 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (59.7%)
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 | 7.020e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40886.519714337715 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.98 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (-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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40805.77127286562 (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.10 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 611.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.35 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40301.886302150044 (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.03 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40844.04852616497 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41223.41279681412 (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 : 2.07 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.06 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (68.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 = (-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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41050.813378295425 (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 : 1.91 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.87 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40808.46802194807 (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.09 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (66.3%)
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 | 7.262e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39516.459022618474 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.6%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40734.46159744638 (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 : 1.75 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.42 us (95.6%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40304.115714587264 (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.03 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38999.45809704112 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.693e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37298.495834708316 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40542.63429232642 (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 : 1.74 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40677.66606591329 (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.13 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.91 us (95.8%)
LB move op cnt : 0
LB apply : 1.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.5%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41269.82141275773 (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.17 us (0.5%)
patch tree reduce : 350.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 : 449.32 us (98.2%)
LB move op cnt : 0
LB apply : 2.07 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (66.9%)
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.023e-03 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28038.591309913765 (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.08 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 440.00 ns (0.3%)
LB compute : 157.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39090.63830298642 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 7.365e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38950.90909526528 (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 : 1.81 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41134.629552088285 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.6%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40976.93629246732 (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.08 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.24 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.1%)
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 | 6.774e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42345.57768148242 (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 : 1.70 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39894.09191993944 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.46 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.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 | 7.209e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39786.440180407626 (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 : 1.93 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (71.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 | 7.295e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39312.210016571385 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40170.64650340481 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.10 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 7.354e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38997.00655681758 (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 : 1.93 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.455e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38465.58270709951 (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 : 1.99 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.5%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40658.99233641853 (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.25 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (59.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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40262.60904825283 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (57.9%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42001.39818108833 (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 : 1.88 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 154.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39729.23897953816 (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 : 1.93 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40659.022160664994 (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 : 1.70 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 173.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40239.95165431975 (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 : 1.69 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.56 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (59.9%)
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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40493.1245750681 (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.15 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.17 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.011e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40888.18177897312 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40664.49195365383 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.4%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40652.38817067227 (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 : 1.85 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.48 us (92.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40527.52894567539 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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 | 8.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35463.62128108705 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.2%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41426.51017405706 (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 : 1.93 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40151.49244295494 (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 : 1.96 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 7.387e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38796.176244759066 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.7%)
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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39329.66171212318 (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 : 1.92 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 = (-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 | 7.595e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37731.5304259736 (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 : 1.73 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40083.596531370844 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.6%)
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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39950.29393954912 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (66.0%)
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 | 6.931e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41342.18248412987 (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 : 1.90 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40473.72777525885 (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 : 1.82 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 141.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40477.3285716372 (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 : 1.85 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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 = (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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40195.51782088524 (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 : 1.87 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 6.775e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42289.83037920433 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41908.70098602817 (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 : 1.97 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 6.826e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41970.72859979978 (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 : 1.96 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 191.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (69.8%)
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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39313.99210582199 (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.03 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.0%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40734.36903678873 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.9%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40151.40881457604 (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 : 1.76 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.84 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 7.370e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38871.11617968687 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39792.92380222052 (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.08 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40787.52990767238 (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 : 1.76 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.72 us (95.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41473.49783363104 (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 : 1.86 us (1.2%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.38 us (95.8%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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.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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42249.16025688241 (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 : 1.91 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41289.47219883057 (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 : 1.90 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 6.730e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42565.87300143736 (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 : 1.79 us (1.0%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.70 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41311.60378828309 (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.02 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 = (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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40439.60289643744 (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.05 us (1.4%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.69 us (95.5%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.5%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39860.86515493508 (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.18 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 159.40 us (95.7%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.379e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38827.64619785854 (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.20 us (1.3%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38747.860881560206 (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 : 1.87 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.0%)
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 | 7.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35910.53763072183 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 140.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41101.580544087694 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41031.31336393933 (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.02 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.76 us (95.8%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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.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 | 6.646e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43113.659204928445 (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.12 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41968.303824695526 (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 : 1.93 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (69.0%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40617.70667504371 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 170.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.034e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40736.397104742064 (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 : 1.71 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.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 = (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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40690.277680044215 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (52.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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40345.18373616916 (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 : 1.89 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40914.2535558617 (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 : 1.90 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.7%)
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 | 7.270e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39424.362716575975 (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.02 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39749.559487370534 (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 : 1.95 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40565.29759833913 (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 : 1.94 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.00 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41795.03718114693 (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 : 1.93 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.89 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.6%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41672.133516650305 (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 : 1.99 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 = (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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39756.25370866431 (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 : 1.82 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41239.21906216765 (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 : 1.93 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.27 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.2%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40649.008968375456 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40744.62241144018 (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 : 1.66 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.20 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41034.40408857552 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40387.40937244664 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.5%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40310.19211093975 (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.00 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.3%)
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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40149.79495496635 (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 : 1.89 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.773e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42337.088670633275 (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.03 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 145.16 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 6.828e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41998.7047961041 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40582.79721158885 (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 : 1.69 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (61.7%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39873.21630814356 (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 : 1.93 us (1.2%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 611.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40580.749943117764 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.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 = (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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41741.28362846875 (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 : 1.66 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.98 us (96.2%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39890.75751135964 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40465.694544587146 (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 : 1.90 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.534e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38075.763571737225 (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.14 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 7.433e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38596.536567707095 (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.55 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 176.39 us (95.8%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (68.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.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 | 7.593e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37781.53339209549 (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 : 2.16 us (1.4%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.9%)
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 | 7.433e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38599.579500633474 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41249.43655243291 (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 : 1.63 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40805.00792116332 (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 : 1.77 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40891.43752886875 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40851.97170498694 (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.17 us (1.4%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.4%)
LB compute : 145.44 us (94.9%)
LB move op cnt : 0
LB apply : 1.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (53.9%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40054.26716027387 (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 : 1.83 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41034.62057164344 (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 : 1.85 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.4%)
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 | 6.790e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42263.881295064166 (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.02 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (56.3%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41892.92403983241 (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 : 1.88 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.91 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42249.10832123706 (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 : 1.96 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 167.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40166.65865904233 (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 : 1.85 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40011.48722461527 (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 : 1.89 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.63 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.0%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41318.89979843165 (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 : 1.68 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40106.343905301765 (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 : 1.75 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39186.625867749106 (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 : 1.91 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.4%)
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 | 7.264e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39513.392454246714 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39625.67457565935 (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 : 1.90 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41845.50018760653 (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.13 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41830.35752304796 (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 : 1.88 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42615.417712145354 (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 : 1.65 us (0.9%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 178.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39853.13664839916 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.9%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40845.361146882395 (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.14 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (61.4%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40304.03634519291 (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 : 1.78 us (0.4%)
patch tree reduce : 350.00 ns (0.1%)
gen split merge : 291.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.1%)
LB compute : 407.54 us (98.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (71.8%)
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 | 9.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29157.444895315843 (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 : 1.88 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.4%)
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 | 7.016e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40909.16222559557 (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 : 1.68 us (1.1%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39694.85994778278 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 = (-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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40675.178984436396 (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 : 1.90 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40967.069731111034 (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 : 1.90 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41373.20936544016 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41658.6321020127 (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 : 1.95 us (1.3%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.11 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 7.010e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40935.75530889414 (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 : 1.89 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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.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 | 7.355e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39017.33096744638 (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 : 1.82 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39344.68256737314 (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 : 1.87 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 173.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 | 7.348e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39052.38178017446 (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 : 1.86 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.1%)
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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40173.1248838547 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.78 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40816.23824410051 (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 : 1.96 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.999e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40997.624518533805 (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 : 1.81 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.72 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.2%)
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 | 8.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35327.17050071487 (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 : 1.93 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 144.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.7%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41335.38727606589 (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.14 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.4%)
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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40095.181583031335 (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 : 1.85 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (-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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42566.11288812576 (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.07 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41573.42348325983 (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.00 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 157.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (72.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 = (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 | 6.947e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41291.27876654165 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40930.1263537939 (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.07 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.90 us (95.8%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.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 = (-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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40578.09907878497 (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.06 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39612.098620562865 (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 : 1.89 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.332e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39116.33491935486 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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.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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40428.83349458924 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.91 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.5%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40231.59654625046 (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 : 1.70 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40369.84352439093 (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 : 1.77 us (1.2%)
patch tree reduce : 651.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.28 us (95.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42433.11914887152 (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.14 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 150.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41752.32924766659 (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 : 1.86 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41388.85277587177 (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.08 us (1.2%)
patch tree reduce : 701.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41380.96054244619 (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.26 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.2%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41057.40723001522 (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 : 1.75 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.35 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (53.6%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41224.01644874132 (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.14 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 144.60 us (95.5%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (53.2%)
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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39634.814127038364 (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 : 1.83 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 143.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40702.75702109893 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 = (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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41080.63757487354 (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 : 1.83 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (53.6%)
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 | 6.750e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42463.634188289725 (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 : 1.93 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 158.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41434.61498096583 (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 : 1.67 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41370.599491995046 (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 : 1.72 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.12 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.1%)
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 | 7.378e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38843.776469984674 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.59 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.14 us (95.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.005e-04 | 2.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40914.27518054777 (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 : 1.73 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 = (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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39930.22072313004 (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 : 1.74 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41365.5274820189 (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 : 1.89 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40499.38379029075 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.2%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41571.884894063274 (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.05 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.1%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41874.22290554622 (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.23 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.55 us (95.6%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.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,-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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41359.07972475316 (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 : 1.82 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 161.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41238.722374715726 (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 : 1.73 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.80 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.0%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41401.77942856367 (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 : 1.90 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41077.43815031538 (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 : 1.72 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.89 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.0%)
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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39354.76563356621 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40760.321060148555 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40624.726475642616 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.761e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42372.791177774256 (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.05 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41047.38673224293 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.02 us (95.5%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.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 | 8.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35802.222401996216 (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 : 1.99 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41106.223045418534 (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.10 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 168.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.0%)
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 | 8.515e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33646.11388253616 (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.08 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.6%)
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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41469.33281845461 (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 : 1.74 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.9%)
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 | 7.075e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40490.18410034909 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.3%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40420.41662024605 (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 : 1.72 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (62.5%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40686.74513657957 (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 : 1.84 us (1.2%)
patch tree reduce : 560.00 ns (0.4%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.47 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.274e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39384.54306562317 (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 : 1.82 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39516.489382829415 (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 : 1.71 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41063.29587275224 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41083.243919423534 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.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,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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41592.19117805327 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.2%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40266.79699193424 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (38.2%)
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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41998.54115153439 (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 : 1.69 us (1.0%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40512.574835991625 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40825.063814569585 (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 : 1.74 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41160.917924437956 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (57.2%)
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 | 7.083e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40454.32102128623 (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 : 1.99 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40569.07586213334 (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.16 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.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 = (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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39868.19919059277 (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.25 us (1.5%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 591.00 ns (0.4%)
LB compute : 145.69 us (95.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (69.7%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41138.062990536775 (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 : 1.85 us (1.2%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 391.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 470.00 ns (0.3%)
LB compute : 142.29 us (95.2%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42762.52160764666 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41606.88651330004 (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 : 1.92 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.1%)
LB compute : 173.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.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,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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40338.06133986629 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40168.53207222492 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 7.257e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39493.89320540352 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.2%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40111.002038449435 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (72.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.993e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40991.09294170435 (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 : 1.90 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41855.494734666194 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41067.00054665793 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41160.993433748525 (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.14 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 177.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39618.33954210266 (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.00 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.9%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41097.93370273339 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40303.64354107546 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.0%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41405.44261190215 (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 : 1.68 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41020.028400560936 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.8%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40549.0612328766 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40460.94893003425 (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 : 1.88 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40841.99515580323 (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 : 1.83 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41233.795032484966 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 6.759e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42431.31716985687 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.756e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42452.76326859067 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.62 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.5%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41015.52028892012 (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 : 1.68 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.3%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40294.82819341128 (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 : 1.71 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.5%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41115.667466443905 (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 : 1.83 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40072.1770256358 (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.19 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 = (-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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39888.546994323755 (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 : 1.68 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40679.20839055349 (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 : 1.78 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.22 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40753.11584312098 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.27 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.748e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42519.020345296754 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (60.4%)
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 | 8.010e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35819.90891382627 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.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 = (-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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42461.44455678133 (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 : 2.09 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 159.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 = (-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 | 6.993e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41032.53976195189 (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 : 1.75 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.2%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40005.39166456726 (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 : 1.73 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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.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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40813.49779360865 (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 : 1.70 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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 = (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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40231.19376416724 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 169.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.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.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 | 7.435e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38598.80869293822 (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.10 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40414.15363021228 (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 : 1.95 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.239e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39643.41493607649 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42007.124254244794 (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.38 us (1.6%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.45 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40606.58401743066 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41368.6642714105 (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 : 1.67 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 160.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.515e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38191.373823586735 (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.03 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 162.23 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.0%)
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 | 7.273e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39465.039332081426 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41467.46464689471 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 160.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40176.5029592372 (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 : 1.70 us (1.0%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 520.00 ns (0.3%)
LB compute : 157.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.553e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37997.92832954958 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.0%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40248.89606934812 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41343.32109632452 (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 : 1.81 us (1.1%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.5%)
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 | 6.963e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41217.11980051788 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41690.62345307045 (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.42 us (1.6%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 146.60 us (95.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40997.21568986232 (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.11 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.87 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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.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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41421.06359884593 (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 : 1.89 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 168.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.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 = (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 | 7.494e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38299.9410346103 (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 : 1.91 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40257.89367995282 (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 : 1.77 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 141.96 us (95.8%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41641.84698568851 (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 : 1.66 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38953.9805859359 (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 : 1.90 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.9%)
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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40386.01168094314 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40272.67439008047 (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 : 1.93 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39847.714318911094 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41747.37657477084 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.13 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (-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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42403.51232317314 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42199.21684144541 (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 : 1.91 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39832.95113890038 (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.03 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.79 us (95.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.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.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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41436.001614531706 (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 : 1.86 us (1.3%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 140.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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 = (-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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40973.4481300392 (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 : 1.66 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41221.27874678872 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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 = (-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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40498.85782618857 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40464.62385581741 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40981.643822913546 (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 : 1.91 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42580.978016029636 (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.00 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41046.87714831584 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40851.87059457848 (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 : 1.87 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (59.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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41046.826699987214 (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 : 1.72 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.90 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40526.81431780612 (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 : 1.90 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.007e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40930.977684113364 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41305.7310497229 (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 : 1.73 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.87 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.9%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39963.57076408827 (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 : 1.83 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.34 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42718.59676634494 (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 : 1.89 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39709.33239293367 (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.23 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 175.64 us (96.1%)
LB move op cnt : 0
LB apply : 1.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (68.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 | 7.368e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38915.64247111349 (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 : 2.18 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.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 = (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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42075.489226801925 (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 : 1.84 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40821.459316427354 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41010.83692200598 (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.01 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (60.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 | 8.415e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34067.15716179039 (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 : 1.93 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40760.76030181617 (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 : 1.63 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.59 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39038.36436313159 (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 : 1.96 us (1.2%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.98 us (95.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39813.75163920486 (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 : 1.90 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41316.235214838154 (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 : 1.66 us (1.1%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.24 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,-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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41201.534944842904 (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 : 1.81 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41591.52874797748 (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.00 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41270.835947171734 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 6.717e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42667.409069491856 (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 : 1.71 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (56.8%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41901.7441139613 (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 : 1.99 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 143.94 us (95.3%)
LB move op cnt : 0
LB apply : 1.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (58.6%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40565.58016630561 (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 : 1.71 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.64 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40090.22894443594 (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.09 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.5%)
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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40449.49757502728 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40402.03046045165 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.04 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 6.878e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41661.17169739025 (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.01 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39152.086714779536 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 6.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42491.406202095546 (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 : 1.99 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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,-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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42680.03684205012 (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 : 1.71 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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 = (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 | 7.389e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38775.57650248257 (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 : 1.77 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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,-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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40825.697009119576 (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 : 1.67 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 157.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.5%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40018.1443101927 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40472.872873541564 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.70 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.3%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40427.87278011401 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40865.96686751043 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41179.906516933566 (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 : 1.96 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40558.48661013557 (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.02 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.674e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37330.81284268163 (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 : 1.71 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.71 us (88.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.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,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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39817.31607711163 (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 : 1.70 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40947.168543445565 (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 : 1.65 us (1.1%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.5%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39852.688706884415 (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.10 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.0%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39482.848294757954 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.75 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39940.26189411841 (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 : 1.71 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.87 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40813.21602759799 (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 : 1.73 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41786.77684631085 (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 : 1.70 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41601.59978488234 (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 : 1.72 us (1.2%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.86 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.837e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41908.39022529795 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40456.06536324717 (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 : 1.71 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 176.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.8%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40182.027977127065 (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 : 1.71 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41406.75215291199 (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 : 1.80 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.81 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.75 us (95.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41137.00003064269 (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 : 1.69 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.069e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40538.41752961399 (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 : 1.83 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.290e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39307.17742485531 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39515.31682353244 (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 : 1.91 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 150.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41206.2413088257 (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 : 1.71 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 140.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41539.104235933904 (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.17 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.9%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41570.249477238176 (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.04 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.26 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41756.90025601321 (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.03 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.021e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40820.39402521585 (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 : 1.69 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.6%)
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 | 7.493e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38252.30136258286 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40504.96652577208 (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.00 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.81 us (96.3%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39849.68224021373 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41186.94217468417 (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 : 1.81 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.7%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40359.52060902384 (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 : 1.77 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.67 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42169.4299819381 (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.04 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41204.37676457807 (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.11 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 155.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41506.20398403907 (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 : 1.73 us (1.0%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 160.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40916.70017928596 (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 : 1.70 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.5%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40579.90473870505 (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 : 1.66 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.07 us (96.2%)
LB move op cnt : 0
LB apply : 911.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41699.97300248969 (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.15 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 139.40 us (95.6%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (78.1%)
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 | 7.168e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40008.1489100208 (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 : 1.84 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41336.08585926667 (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 : 2.39 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 154.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (55.7%)
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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39620.43345877866 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 145.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39600.35199970321 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40694.922309758185 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (63.9%)
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 | 7.383e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38853.86214304318 (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.08 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 146.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40822.61113479331 (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.11 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40671.88887936913 (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 : 2.13 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41096.07018428168 (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 : 1.68 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 500.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.92 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.6%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41287.294972879834 (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 : 1.71 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.71 us (96.2%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40605.31835580087 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39762.59382929518 (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 : 1.77 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.270e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39467.15025538205 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41441.5877987702 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41114.06162220366 (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 : 1.89 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.32 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (89.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 = (-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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41650.26971700536 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41663.073962801886 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.10 us (95.6%)
LB move op cnt : 0
LB apply : 1.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41707.30690969513 (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 : 1.77 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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,-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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41108.84393608024 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.94 us (96.2%)
LB move op cnt : 0
LB apply : 891.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.5%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39797.757090517705 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.05 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.4%)
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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40125.230133757694 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (52.3%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40370.22472458526 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40267.19287361273 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39924.51808908179 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.18 us (95.9%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39967.9397562476 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (59.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 = (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 | 6.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42563.7583292632 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.82 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41965.76213008738 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (66.7%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40004.77512054177 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40967.41264026613 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (68.4%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40447.169324637835 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40544.42150071449 (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.08 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.12 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.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,-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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40474.52235454721 (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 : 1.73 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40212.523204874225 (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 : 1.74 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.03 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (-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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40206.61610181569 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.43 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 = (-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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42445.28533290219 (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.19 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.85 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41416.714803414485 (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.05 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39468.17802603994 (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 : 1.89 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 173.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (51.4%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39718.6441360882 (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 : 1.91 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41226.457344681665 (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.04 us (1.4%)
patch tree reduce : 570.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.36 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41043.73864008311 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.44 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41050.46005190433 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40809.77694655331 (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.02 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.84 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40329.70654393895 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.0%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41347.57740523908 (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.12 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.4%)
LB compute : 142.49 us (95.6%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (72.4%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40491.48714267273 (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 : 1.89 us (1.3%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 143.15 us (95.3%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40938.54768429374 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.075e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40554.2108382976 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42014.61799731175 (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 : 1.68 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40716.71476696696 (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 : 1.68 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.60 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41482.84302600365 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.77 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (-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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41673.679083357565 (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 : 1.70 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40821.60839580765 (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.04 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40982.855856147624 (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 : 1.82 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41768.7986681625 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.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 = (-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 | 6.726e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42646.98708128903 (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 : 1.91 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41910.01960721977 (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 : 1.88 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 175.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (66.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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40395.98267611482 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.9%)
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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40326.446747218324 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.62 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.1%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40524.31321477027 (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 : 1.70 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40785.70286369456 (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 : 1.74 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 145.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (55.1%)
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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39716.29471704709 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40140.408397143954 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 = (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 | 6.709e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42740.875070174305 (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.05 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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,-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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41566.6798839355 (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.08 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.50 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40221.58744709665 (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.88 us (1.9%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.97 us (95.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.929e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41374.27389803709 (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 : 1.74 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41428.656531736975 (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 : 1.79 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40193.56243629491 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (77.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 | 7.087e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40450.238512634154 (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 : 1.87 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40467.387961524735 (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.13 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.43 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 8.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32535.05334677147 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41104.4122807736 (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 : 1.65 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41913.62116348682 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 251.00 ns (0.2%)
LB compute : 143.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40772.074659140606 (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 : 1.94 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.4%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40421.54063016019 (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.00 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.0%)
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 | 6.839e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41900.914499942875 (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.09 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.46 us (95.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.741e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42511.387944839225 (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 : 1.75 us (1.0%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 160.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41141.98122490988 (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 : 1.70 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.51 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.0%)
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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40322.60328876477 (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 : 1.78 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.61 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39999.49754084177 (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 : 1.71 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 153.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40290.22346545911 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39542.92785598973 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (63.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 = (-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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40832.73607649668 (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 : 1.90 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.2%)
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 | 6.755e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42417.39596900032 (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.38 us (1.6%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41915.02194186345 (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 : 1.90 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.764e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42354.27218562125 (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 : 1.72 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.06 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41217.26740284215 (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 : 1.73 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.27 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (64.1%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40000.66675193818 (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 : 1.87 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40130.9369705276 (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 : 1.88 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 144.54 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41198.682646389636 (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 : 1.85 us (1.2%)
patch tree reduce : 541.00 ns (0.4%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 500.00 ns (0.3%)
LB compute : 142.18 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41414.29819429541 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40206.272037678034 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.1%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41519.905695962145 (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.06 us (1.4%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41962.659781756454 (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 : 1.82 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 251.00 ns (0.1%)
LB compute : 162.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (64.3%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40904.252030723575 (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 : 1.81 us (1.1%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (75.5%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40464.14750031199 (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 : 1.67 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 141.69 us (95.8%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (5.1%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41170.26877188574 (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 : 1.90 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 170.56 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.584e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37773.39426666111 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41129.707857665475 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 149.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.075e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40492.799189278754 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41551.55864458576 (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 : 1.76 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.71 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42168.48156882511 (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 : 1.86 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40911.351907172 (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.09 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.73 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.7%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41818.966367748304 (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 : 1.88 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.9%)
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 | 7.313e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39181.36578842533 (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.09 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41518.830609935576 (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 : 1.89 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (54.5%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41408.884358907395 (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 : 1.69 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40970.106247776035 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (55.3%)
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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41274.02883147783 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (61.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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40837.152438558194 (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 : 1.87 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.12 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.700e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42772.48678469687 (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.09 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 145.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 | 6.803e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42129.106469204366 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.9%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42226.54900405665 (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 : 1.75 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.16 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40475.24682771875 (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 : 1.66 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40262.18884046592 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (50.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 = (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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39893.50292229736 (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.09 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39731.189486915806 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 8.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33256.858057473655 (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.08 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.78 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39778.89378103852 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40618.33811763006 (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 : 1.86 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39634.3274642832 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.78 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41216.8249915808 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40797.62706095201 (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.16 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41192.81325567321 (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 : 1.90 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.9%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40584.52304137208 (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 : 1.93 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 500.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.7%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41178.24964196548 (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 : 2.91 us (1.9%)
patch tree reduce : 1.49 us (1.0%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.6%)
LB compute : 146.31 us (94.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40992.09257962408 (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 : 1.90 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 156.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.7%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39624.11754625862 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41042.91102119843 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39810.66874369635 (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.16 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (-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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40472.9215419559 (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 : 1.88 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.65 us (95.3%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 6.773e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42352.20531011922 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 154.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.0%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41100.88209356261 (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 : 1.96 us (1.3%)
patch tree reduce : 681.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.06 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41164.607497095654 (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 : 1.74 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.70 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41608.795842336636 (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 : 1.66 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.7%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40881.20752481121 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.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 = (-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 | 7.017e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40888.09773310959 (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 : 1.70 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.0%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40686.33775614466 (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.37 us (1.6%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.4%)
LB compute : 145.16 us (94.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (55.3%)
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 | 7.337e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39103.97494910182 (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 : 1.97 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41379.75495491362 (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 : 1.88 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.34 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41339.9234928881 (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 : 1.81 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42343.210019585145 (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.06 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (53.0%)
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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41741.14464625388 (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 : 1.91 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41262.61598572794 (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 : 1.70 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 176.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.0%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40328.625117869604 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.22 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41009.57196159441 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (74.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 = (-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 | 6.963e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41218.68203032455 (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 : 1.74 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (56.6%)
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 | 9.085e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31589.935515653975 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.5%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40776.238595052186 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41058.39149061121 (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 : 1.71 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.68 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40209.76798760573 (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 : 1.96 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39710.99294854062 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41086.247043040305 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41616.96714788435 (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.04 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42553.34335178277 (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 : 1.81 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.2%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40807.10985673887 (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 : 1.64 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.57 us (89.1%)
LB move op cnt : 0
LB apply : 14.58 us (8.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.1%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40847.85537238738 (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.34 us (1.6%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (95.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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,-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 | 6.960e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41239.740572475326 (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 : 1.85 us (1.2%)
patch tree reduce : 570.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41131.78511603014 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39960.36420913266 (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 : 1.72 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (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-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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40251.27556212164 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40190.36619069701 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 139.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.652e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43146.28989128696 (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 : 1.95 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 144.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 6.922e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41461.393932679224 (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 : 1.69 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40256.079781660424 (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 : 1.77 us (0.9%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 181.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (66.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 = (-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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39849.37860792553 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.9%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39251.392281900284 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.4%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40757.79999515724 (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 : 1.80 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 139.25 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41280.50655407596 (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 : 1.97 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.23 us (95.9%)
LB move op cnt : 0
LB apply : 962.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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.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 | 7.049e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40710.38459543891 (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.12 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.72 us (95.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.933e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41391.31812948182 (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 : 1.89 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 550.00 ns (0.3%)
LB compute : 150.68 us (95.8%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41759.78477041704 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41911.106990376626 (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 : 1.76 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40892.698492843585 (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 : 1.98 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41232.50742397533 (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 : 1.71 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.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 = (-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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41199.55125056641 (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.16 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (-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 | 7.278e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39420.55028329544 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.7%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40538.534314201126 (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.06 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39993.5573274993 (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 : 1.80 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.92 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41468.84839183937 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (-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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42109.03625342717 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.83 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41026.245032378414 (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 : 1.92 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40436.46590058641 (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 : 1.91 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 161.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41298.81175198535 (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 : 1.84 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.07 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40547.84278685359 (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 : 1.80 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41461.27834698696 (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 : 1.70 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.7%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41613.55384118239 (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 : 1.79 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (65.0%)
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 | 7.091e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40440.247087889096 (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 : 1.77 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40795.07868800676 (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.17 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 142.36 us (95.6%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40369.76449791119 (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.11 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.91 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.719e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42673.831168534365 (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 : 1.91 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (58.6%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41459.357840012744 (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 : 1.69 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40943.36787337494 (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 : 1.80 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 140.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.8%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41322.79308046427 (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 : 1.83 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.82 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41004.28226073388 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40862.58423385152 (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 : 1.93 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.24 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41061.99646118629 (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 : 2.22 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40370.977825207294 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.723e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42629.27290973015 (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 : 1.91 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42177.75625282196 (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 : 1.67 us (0.9%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 186.32 us (96.8%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39829.746855654324 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41071.676490008664 (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 : 1.62 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.18 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41650.18396987652 (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 : 1.78 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (52.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 | 7.483e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38294.756798333416 (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 : 1.94 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 166.65 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 7.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36507.251332552325 (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.09 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.45 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39816.60825515178 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39521.26697354489 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.03 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40627.51371726254 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.98 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 6.778e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42271.34103698737 (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.01 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.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 = (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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41554.54046246367 (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.04 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.07 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41936.252909815594 (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 : 1.86 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40322.99508341944 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40644.39281466665 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40781.80076172475 (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 : 1.88 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40691.99111384669 (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 : 1.65 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40745.53387816247 (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 : 1.67 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39846.80526502959 (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 : 1.83 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 6.731e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42561.44019403184 (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 : 1.92 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 541.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.37 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41527.12611702106 (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 : 2.19 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.50 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41324.934267351644 (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 : 1.89 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40195.07401101868 (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.01 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40810.02730686768 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.07 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (57.4%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41397.40611324179 (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 : 1.68 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.73 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.2%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39563.93094176316 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.276e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39374.3805900721 (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 : 1.76 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.50 us (95.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41330.80602574734 (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 : 1.88 us (1.2%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (55.9%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41248.01677789988 (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.02 us (1.4%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (57.7%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41821.64798707319 (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 : 1.86 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42562.35540078011 (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 : 1.75 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (65.7%)
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 | 7.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36315.51041838507 (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.01 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 7.251e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39518.304853217276 (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 : 1.75 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.85 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40062.248807587705 (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 : 1.94 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 430.00 ns (0.3%)
LB compute : 153.23 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.7%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40769.610528270205 (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 : 1.60 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.6%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39828.19449985183 (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 : 1.72 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.4%)
LB compute : 146.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40905.638712615946 (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 : 1.75 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39986.124141312495 (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.06 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40533.03799527459 (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 : 1.87 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.05 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42555.058182710636 (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 : 1.91 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41813.629551208105 (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 : 1.79 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 164.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41153.87820006044 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.30 us (95.7%)
LB move op cnt : 0
LB apply : 1.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40443.66153733036 (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 : 1.98 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.2%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39805.23167378572 (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.04 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.4%)
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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40143.59422230151 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41389.3530325036 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41114.151480254455 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (63.4%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41098.85326151446 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.65 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41607.973573960124 (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 : 1.93 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.19 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (56.9%)
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 | 6.749e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42482.276489515505 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41611.815524614016 (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 : 1.86 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40041.787201204264 (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 : 1.77 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 171.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.5%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40397.92627498494 (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 : 1.84 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.61 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41418.95910291395 (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 : 1.67 us (1.1%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.251e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39548.44666675099 (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 : 1.78 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.438e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38557.64068097343 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39748.08731407072 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40793.97620794359 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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.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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40529.07337340395 (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 : 1.89 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.4%)
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 | 6.910e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41513.66028824693 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (55.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40621.664959111105 (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 : 1.90 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41092.49975345025 (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 : 1.80 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40190.66462705372 (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 : 1.73 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.31 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41962.088475631004 (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 : 1.73 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39836.12977400393 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 7.046e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40719.8348491973 (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 : 1.92 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.006e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40952.957647312796 (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 : 1.80 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 142.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39979.88264235372 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.759e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42451.49370023146 (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 : 1.99 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.86 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.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 = (-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 | 6.719e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42707.10694534537 (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.09 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 = (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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41163.99901710973 (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 : 1.75 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.05 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41238.585918648074 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.8%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41552.396917743026 (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 : 1.71 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.82 us (96.2%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40751.41818190121 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 148.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40318.2556898616 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.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 = (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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40775.17355887483 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 7.631e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37609.36752328399 (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.16 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 154.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.5%)
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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39491.31452475666 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41213.85023006969 (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.10 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.4%)
LB compute : 140.91 us (95.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41992.69468879491 (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 : 1.91 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.30 us (95.5%)
LB move op cnt : 0
LB apply : 1.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42029.37081905827 (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 : 1.71 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (64.3%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41955.75847430654 (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 : 1.74 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.37 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.2%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41286.76522205329 (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 : 1.72 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (75.6%)
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 | 7.213e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39792.310992919585 (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.09 us (1.4%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.62 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.9%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40966.29383714958 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 153.28 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.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.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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39890.16758988543 (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.02 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40139.633688935566 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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,-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 | 6.768e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42407.10813800347 (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 : 1.90 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.9%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40722.40445321974 (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.08 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 151.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41628.1110155673 (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 : 1.80 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 = (-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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40253.95857868004 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40996.69851037788 (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.06 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40807.90946033422 (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 : 1.83 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.0%)
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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40513.41033372549 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41170.79481720871 (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 : 1.95 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40578.566611047856 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.39 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41820.55385333035 (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 : 1.96 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41077.6652404529 (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.24 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.81 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41892.643031576314 (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 : 1.93 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 162.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39975.79742003537 (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 : 1.81 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 171.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.262e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39513.00012255412 (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 : 1.77 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.335e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39115.55514422944 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40949.12175810127 (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 : 1.97 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.399e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38773.80067823703 (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 : 1.97 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40930.135304032425 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40709.72080184409 (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 : 1.78 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (62.2%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40224.34817723526 (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 : 1.91 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.23 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.7%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41275.89765822936 (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 : 1.87 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.19 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.1%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42730.41912408459 (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 : 1.78 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41109.3362710547 (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 : 1.81 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.7%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40607.925576893125 (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 : 1.66 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.5%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41511.974973101314 (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 : 1.86 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40154.321045461875 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40453.74118961604 (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 : 1.85 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 501.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.1%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40279.97252587627 (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 : 1.78 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 = (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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40326.360203843964 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.691e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42854.15363997387 (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 : 1.98 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 141.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42569.86704455821 (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.13 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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.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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40840.16503711184 (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 : 1.97 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.8%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39949.18704004034 (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 : 1.63 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40225.2996040013 (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 : 1.84 us (1.2%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.10 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40803.791103784686 (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.02 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (63.6%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39982.98725192656 (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 : 1.93 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.62 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40015.940261915 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40594.303637765224 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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,-4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41940.67585227346 (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.42 us (1.6%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.26 us (95.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.747e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42478.12466789677 (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 : 1.87 us (1.2%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.88 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.0%)
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 | 6.865e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41744.751515033364 (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 : 1.66 us (1.0%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 571.00 ns (0.3%)
LB compute : 158.09 us (95.6%)
LB move op cnt : 0
LB apply : 1.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41070.973121999654 (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 : 1.68 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.335e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39070.33800784978 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.91 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40609.407244477545 (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 : 1.77 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39953.133794392656 (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 : 1.66 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41722.45648959483 (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.01 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 | 7.085e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40443.787104853065 (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 : 1.64 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.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 = (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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40295.16749017232 (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.14 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.3%)
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 | 7.150e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40070.166845638225 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.46 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40001.951004377814 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 = (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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42372.88267710514 (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.03 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.9%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41161.87131682766 (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 : 1.73 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 181.51 us (96.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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,-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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40209.50037041151 (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 : 1.75 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
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 = (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 | 7.431e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38551.27120245097 (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.05 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 351.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40322.29851080461 (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.07 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40282.78027049396 (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.25 us (0.7%)
patch tree reduce : 431.00 ns (0.1%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 320.22 us (97.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (71.1%)
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 | 8.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32779.900705033266 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.18 us (96.0%)
LB move op cnt : 0
LB apply : 912.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.5%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39812.421761685306 (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 : 1.88 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39423.863039799005 (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.27 us (1.4%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.17 us (95.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (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 | 7.314e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39168.990060965916 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 7.439e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38508.34923356407 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.7%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40872.28144784346 (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 : 1.96 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.0%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39897.70118539645 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.768e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42332.40162009403 (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 : 1.95 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40572.45595478953 (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 : 1.90 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.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,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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40709.278504695445 (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.00 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.85 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.392e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38759.00564432769 (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 : 1.75 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 174.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40047.781307876605 (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 : 1.67 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.86 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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.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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41955.615882512786 (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 : 1.70 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.91 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41055.79821389001 (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 : 1.99 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.79 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39703.585955583025 (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.05 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.99 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41241.32503752044 (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.08 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.96 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.9%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40072.696946262564 (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 : 1.89 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 146.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42144.04999355179 (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.04 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41197.47425790601 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41321.983476576206 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41184.85961728734 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.1%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41239.15104825777 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (61.2%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40544.77830456149 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (67.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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40455.75248829763 (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 : 1.93 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40221.41933412977 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41560.701413536946 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 141.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.2%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40482.51825192294 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40146.959181937906 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41128.29559634344 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 158.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41485.943550072036 (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 : 1.74 us (1.2%)
patch tree reduce : 580.00 ns (0.4%)
gen split merge : 531.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 140.29 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41509.506376502 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39894.527296191096 (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 : 1.69 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39528.99765751914 (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 : 1.74 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.35 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.948e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41267.52127705627 (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 : 1.94 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.0%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41165.58105669777 (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.69 us (1.8%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 144.76 us (95.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40660.6454116075 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.98 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.7%)
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 | 6.709e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42745.84921732651 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.42 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (53.3%)
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 | 6.764e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42401.59909219869 (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 : 1.83 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41845.854090772606 (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 : 1.86 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40198.346454417726 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41504.57758288328 (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 : 1.59 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.06 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41583.555503075935 (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 : 1.91 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40792.90836690824 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.50 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41210.74574765948 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40540.53777534635 (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.09 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40650.29324243194 (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 : 2.02 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.79 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42220.48251695165 (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 : 1.67 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41153.40503821164 (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 : 1.71 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (68.1%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40023.948081371156 (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 : 1.85 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (48.1%)
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 | 7.223e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39725.61175300229 (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 : 1.97 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 151.85 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39181.54326547175 (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.21 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.45 us (95.3%)
LB move op cnt : 0
LB apply : 1.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 = (-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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40575.01798676924 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.29 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40005.68869733763 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41412.49134410686 (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 : 1.74 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.02 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 782.00 ns (57.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,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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42968.58619245258 (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.07 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41382.296692891614 (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 : 1.82 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.87 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41297.89231045997 (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 : 1.71 us (0.9%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 962.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.2%)
LB compute : 177.04 us (95.6%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.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,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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40095.72098027981 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.9%)
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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40234.9083859307 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 351.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 146.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.5%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40089.20978877117 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.165e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40058.38059145121 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.15 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41213.988183984366 (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 : 1.79 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.8%)
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 | 7.353e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39034.00630177734 (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.01 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.39 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.8%)
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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40086.433757174666 (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 : 1.81 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39975.35632915457 (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.04 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.755e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42486.49340924726 (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 : 1.96 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41507.474226971186 (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 : 1.92 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (-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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40978.533994024416 (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 : 1.90 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 151.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.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 = (-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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39710.45075389897 (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 : 1.73 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40038.573937783905 (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 : 1.66 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40899.34738997948 (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 : 1.73 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.26 us (95.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41533.1779096157 (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 : 1.91 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40408.193930668305 (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 : 1.84 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.52 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (53.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 = (-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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41312.79514802295 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.728e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42655.08438877768 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.66 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40632.34307678397 (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 : 1.97 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (73.9%)
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 | 6.975e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41143.6578406977 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 141.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.6%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41360.58501963446 (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.23 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.4%)
LB compute : 147.40 us (94.8%)
LB move op cnt : 0
LB apply : 1.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (59.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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39511.09599142717 (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 : 1.64 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.396e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38797.443042775776 (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 : 1.81 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39578.73134197736 (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 : 1.76 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41634.727683508616 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 141.67 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.7%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41357.48343029391 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.95 us (95.9%)
LB move op cnt : 0
LB apply : 962.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.6%)
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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42670.44739731963 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.704e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42797.722777966876 (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.09 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 7.136e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40207.24212473909 (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 : 1.76 us (1.1%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40196.09704158139 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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 = (-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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41028.06371329613 (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 : 1.75 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.02 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.5%)
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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41461.06614893166 (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 : 1.75 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40813.04067059051 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40941.93272979685 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.11 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.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 = (-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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42042.98509598803 (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 : 1.88 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.98 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.775e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42336.303940004065 (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.01 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 = (-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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39976.96308694117 (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 : 1.72 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39831.6659278083 (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.04 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39957.63553755483 (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 : 1.76 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39624.02620008389 (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.02 us (1.3%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.90 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41257.40850278079 (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.11 us (1.4%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (60.3%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39552.51570638509 (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 : 1.72 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.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.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.081e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26535.74032827089 (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 : 1.68 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41133.71716055079 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.2%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40262.31512053403 (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 : 1.73 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39869.11529136901 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39703.61355127499 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 = (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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41282.84615685803 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.676e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42938.36209204542 (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 : 1.80 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 6.766e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42360.81425605178 (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.08 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41137.60205679912 (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 : 1.80 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.50 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40077.65682616273 (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 : 1.82 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (67.2%)
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 | 7.139e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40143.05707520725 (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 : 1.90 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40187.13422864302 (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 : 1.77 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 8.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32889.600947279934 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.7%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39742.77838117668 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (67.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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39429.867692819185 (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 : 1.97 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.2%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40008.081198046064 (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.17 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.91 us (94.5%)
LB move op cnt : 0
LB apply : 2.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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,-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 | 7.322e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39135.68187891427 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.16 us (95.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40734.832224388985 (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.30 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.65 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39652.05579691181 (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 : 1.80 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41435.417220122086 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.56 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40771.92640243598 (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.04 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40211.183502690816 (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 : 1.75 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41011.16722721824 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 140.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 = (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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41191.23952445698 (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 : 1.67 us (1.1%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 149.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (61.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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40250.624514900286 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40177.79930081941 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.5%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41312.96322012953 (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 : 1.93 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.3%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40974.81456417919 (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 : 1.93 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (54.3%)
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 | 6.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42225.43997417404 (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.82 us (1.7%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 162.98 us (95.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (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 | 7.148e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40076.1121659724 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 142.55 us (95.6%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42180.46329403184 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40813.81948526381 (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 : 1.84 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 179.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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 = (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 | 7.344e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39006.94557042331 (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 : 1.89 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 158.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41086.89660811849 (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 : 1.68 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41266.30851316556 (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 : 1.91 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40757.03422118926 (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 : 1.75 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.24 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41128.49575553399 (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.16 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41423.99334946067 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (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 | 6.858e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41779.21553582773 (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.16 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.8%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42167.45153128148 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41986.475371329114 (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 : 1.77 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40717.01407004424 (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 : 1.70 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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.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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40413.820261904984 (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 : 2.24 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 160.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 = (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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39489.59780063997 (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 : 1.83 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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.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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40171.069407319126 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41156.422401388096 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40825.39906460776 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41092.432075799756 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40311.855910988124 (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 : 1.75 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42043.42806889342 (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.07 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.85 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42280.521421586374 (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.10 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (49.1%)
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 | 6.756e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42424.42109526153 (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 : 1.73 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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 = (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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41659.23127877435 (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 : 1.64 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 140.38 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.1%)
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 | 7.075e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40516.31468443429 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.95 us (95.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40872.15261965562 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.6%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39659.22517329332 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41508.82194250538 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40284.03337368309 (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 : 1.92 us (1.2%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 550.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (60.3%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41868.39595785535 (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 : 1.87 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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,-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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42450.248563288515 (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 : 2.27 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41668.67409047702 (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.14 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.72 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41284.36821653728 (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.22 us (1.5%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.88 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.9%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41081.93566812554 (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 : 1.73 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.02 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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 = (-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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39711.24312464793 (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 : 1.67 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.25 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40966.36373888874 (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.05 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 180.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.610e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37686.47309928678 (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 : 1.94 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.92 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.8%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40214.193175834414 (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 : 1.84 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40768.97316869255 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 6.731e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42617.39500329518 (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.01 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.29 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42065.31313286031 (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 : 1.78 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.1%)
LB compute : 161.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (72.7%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41326.05071362024 (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 : 1.74 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 155.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.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 = (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 | 7.130e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40234.083263152745 (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.20 us (1.5%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 511.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.4%)
LB compute : 143.17 us (94.6%)
LB move op cnt : 0
LB apply : 1.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (59.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.378e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38885.01849234415 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 351.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41530.55091980507 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40741.83108588402 (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 : 1.88 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41295.93443345857 (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 : 1.85 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40836.45284471814 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.744e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42545.52842187443 (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 : 1.98 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.096e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40440.22761145748 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.5%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42087.455667843344 (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 : 1.71 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.27 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41336.96216473067 (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 : 1.72 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40324.02686786913 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40861.54696285197 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.7%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40130.485746388105 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40861.5055883195 (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 : 1.74 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.64 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.7%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43029.974377912644 (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 : 2.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42497.14402500298 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41262.307081783416 (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.06 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41078.20928183574 (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 : 1.77 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.6%)
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 | 7.363e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38978.861505881854 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41649.610946287605 (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 : 1.96 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 143.96 us (95.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41062.55215266248 (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 : 1.73 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.1%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41370.821152519326 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41159.358063200794 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39259.62199851623 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42740.86525056392 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.784e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42305.2237103731 (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 : 1.91 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40478.12750447632 (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.00 us (1.8%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.62 us (95.6%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (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 | 7.173e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40014.15241771942 (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 : 1.72 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40987.09046343673 (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 : 1.85 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 191.63 us (96.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.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 = (-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 | 7.337e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39114.012542838034 (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.00 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39876.864866929376 (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.15 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.30 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.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 = (-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 | 6.983e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41100.030910590176 (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.06 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.27 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40671.50644813431 (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 : 1.83 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.3%)
LB compute : 141.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41334.63099447345 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.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 = (-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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41510.74968124952 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42242.157926073516 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.26 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41619.20257337795 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.69 us (95.7%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42003.507847541616 (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 : 1.69 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.03 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41562.75343228233 (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 : 1.81 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.78 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.6%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41142.32500544318 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.20 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40020.67162138095 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.7%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40626.9943154421 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40561.57911926034 (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.04 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.8%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40671.02885871959 (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 : 1.72 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41837.77671549789 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 152.64 us (95.7%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41252.15223218726 (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.01 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.21 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41464.72957989522 (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 : 1.78 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41548.96237466311 (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.02 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40984.62514163684 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.72 us (95.5%)
LB move op cnt : 0
LB apply : 1.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (72.5%)
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 | 6.968e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41158.261782838425 (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 : 1.88 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.75 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41001.970725163315 (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.25 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 143.23 us (95.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (51.7%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40791.579980780436 (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.23 us (0.6%)
patch tree reduce : 341.00 ns (0.1%)
gen split merge : 300.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.1%)
LB compute : 343.23 us (97.9%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (73.2%)
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 | 9.456e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30324.84682069184 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39186.208524082285 (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 : 1.89 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 159.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39350.23025518806 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40996.032214627754 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.731e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42593.29244260169 (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.07 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.3%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40422.045531374475 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42087.835179224785 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.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 | 7.048e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40674.59338196866 (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 : 1.75 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.22 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.5%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40523.085072776026 (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 : 1.69 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.70 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (56.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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41474.98172619973 (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 : 1.74 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39829.99735668509 (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 : 1.75 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.87 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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,-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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39054.89601981955 (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 : 1.93 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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.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 | 7.355e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38966.10021403328 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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.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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41242.283068606965 (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 : 1.95 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.96 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42438.96597114512 (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 : 1.98 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41598.37294781724 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.752e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42441.073063709024 (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 : 1.65 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.0%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39876.76792766382 (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 : 1.69 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (55.2%)
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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41196.61561850844 (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 : 1.75 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41103.1031142942 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.79 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40074.86400413555 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.99 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41064.34210086017 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41494.59005706418 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.774e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42294.267224868265 (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.11 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41275.00200666745 (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.26 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.19 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42224.08401425886 (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.00 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.9%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39640.76501126988 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.3%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40811.52786989825 (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 : 1.94 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 511.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.37 us (95.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40342.487965526256 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40632.701207541344 (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 : 1.94 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.31 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40071.27591518038 (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 : 1.82 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41173.87734862693 (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 : 1.85 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.75 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42145.08537595181 (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 : 1.98 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.24 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41348.2679982242 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.10 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (49.5%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39718.998789939564 (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 : 1.89 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39940.494378726056 (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.28 us (1.4%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.53 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41087.013524582006 (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 : 1.77 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.10 us (95.9%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.9%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40894.236769040464 (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 : 1.77 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.85 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39287.27574489837 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.046e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40660.449129520624 (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 : 1.88 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 171.03 us (96.3%)
LB move op cnt : 0
LB apply : 1.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
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 | 7.382e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38811.94266595557 (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.25 us (1.4%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 152.50 us (95.5%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (68.7%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39829.702832516705 (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 : 1.81 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.11 us (95.4%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.1%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41195.01651833333 (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.04 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41984.949844357325 (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.27 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.26 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.5%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41924.444313151806 (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.13 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.65 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,-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 | 7.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36898.595826905905 (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.00 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37001.7711213479 (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 : 1.82 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.223e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39670.77695193654 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40177.83782746291 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41264.51498451222 (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 : 1.72 us (1.0%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39914.41402031714 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40398.255608431646 (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.03 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40279.830318897366 (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 : 1.91 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42272.89049691525 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.766e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42365.34181046437 (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.21 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.21 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42087.42635324411 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40308.57063614986 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40316.05639965403 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 = (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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40220.94845904908 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.9%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41192.83361605852 (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 : 1.98 us (1.3%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.7%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40441.11081052272 (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.31 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.154e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40074.970989378635 (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 : 1.89 us (1.3%)
patch tree reduce : 541.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.08 us (95.8%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42790.88782539374 (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 : 1.89 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.31 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40800.02732781347 (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.12 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.8%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41648.22736730997 (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 : 1.69 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.5%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41465.035085097035 (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 : 1.87 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (71.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 | 7.276e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39415.01933374935 (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.05 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.45 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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.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 | 6.977e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41106.94385679921 (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 : 1.72 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.41 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.351e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39017.93857043066 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.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,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41515.90816255611 (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 : 1.71 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.68 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.3%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40388.93068700055 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40922.79130087359 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42608.47636101809 (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 : 1.88 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41488.20506016532 (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.17 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 158.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.262e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39506.60135716799 (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 : 1.97 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 174.85 us (96.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 7.338e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39096.77761544133 (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 : 1.88 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.4%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39806.69514521377 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.21 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41439.49101806222 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.092e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40460.10396658621 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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,4.336808689942018e-19,0)
sum e = 0
sum de = 0
Info: CFL 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 | 6.977e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41125.84933654038 (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 : 1.82 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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.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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41030.68197658304 (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.34 us (1.6%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.69 us (95.6%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 7.209e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39804.582294131906 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42428.78265103085 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.11 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42201.18969648752 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 149.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41590.932903207104 (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 : 1.70 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 169.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.7%)
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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39924.109903129065 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 140.83 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40645.39046702833 (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 : 1.96 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.19 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40657.05128761691 (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 : 1.77 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40551.29327125301 (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 : 1.93 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41182.480543363345 (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 : 1.82 us (1.2%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41294.514831460954 (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.02 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42743.68302213523 (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.28 us (1.5%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.22 us (95.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (73.1%)
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 | 6.930e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41415.8823453248 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 145.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.5%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41558.426436702226 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.6%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39717.252357851336 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.70 us (88.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41106.79351606177 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 158.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.274e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39456.42530828915 (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 : 1.90 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40472.117128280624 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40841.557058747414 (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 : 1.81 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41701.18341679485 (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.16 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.80 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,-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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41539.96182385804 (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 : 1.86 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.21 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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,-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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42347.87816409434 (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.12 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.44 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.0%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40804.776034811526 (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 : 1.80 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (0,0,0)
sum e = 0
sum de = 0
Info: CFL 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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40329.76509533582 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.65 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.9%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39951.66058467435 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (65.3%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40931.21029913971 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (66.3%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41127.05139217757 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 149.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40895.970324856506 (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 : 1.84 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.72 us (95.7%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (58.5%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39795.81402885796 (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 : 1.82 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (68.1%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39349.74445654032 (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.01 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40798.09740481462 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41780.74320782418 (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.62 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 168.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 7.232e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39672.2617197146 (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.00 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.3%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39698.89312595883 (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 : 1.70 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40734.88648062323 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.5%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40463.52950137319 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.20 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.404e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38745.04474342669 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40274.2333991348 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41234.381147733504 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39671.74685060181 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.79 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (58.5%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40616.83179753605 (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 : 1.97 us (1.3%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 681.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.91 us (95.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40536.84225877908 (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.11 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.20 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42363.29072288378 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41910.567486467495 (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 : 1.97 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41385.37889712942 (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 : 1.75 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.55 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.7%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40948.48003492945 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.89 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (54.3%)
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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40061.94682750034 (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 : 1.85 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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.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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39708.97078175471 (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 : 1.86 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.91 us (95.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40005.62851111564 (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 : 1.88 us (1.1%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40322.66006892989 (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 : 1.88 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (54.4%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41717.51158207758 (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 : 1.89 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 145.35 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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.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 | 6.786e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42247.54470684714 (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 : 1.87 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (65.2%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39642.66366605564 (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 : 1.84 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40756.896320635955 (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 : 1.65 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.1%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41439.50498300404 (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 : 1.99 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.4%)
LB compute : 145.50 us (95.1%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40907.73628604504 (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 : 1.73 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.77 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39634.78219580915 (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.04 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 223.22 us (97.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 7.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36455.515802816786 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40826.82247597546 (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.00 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41009.570518760134 (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.15 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.34 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.5%)
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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42332.41223730472 (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 : 1.91 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40611.43869296489 (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.06 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42211.443884471584 (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 : 1.73 us (0.8%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 201.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.3%)
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 | 7.424e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38596.138022443614 (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.01 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.7%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40026.94031687626 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.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 = (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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40906.5179843104 (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 : 1.72 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (66.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 = (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 | 7.427e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38580.86076253693 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40855.28733635386 (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 : 1.81 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.87 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41665.371807673946 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40231.865119295275 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40962.71206311654 (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.08 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.37 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.830e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41946.48802035617 (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 : 1.88 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.81 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41567.33657654088 (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 : 1.84 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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 = (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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40508.54563996817 (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 : 1.90 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.1%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40319.097672478834 (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 : 17.34 us (3.9%)
patch tree reduce : 1.01 us (0.2%)
gen split merge : 651.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 399.20 us (90.0%)
LB move op cnt : 0
LB apply : 21.41 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 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 | 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 | 1.684e-03 | 1.7% | 0.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 : 2.30 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 193.38 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.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 = (-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 | 9.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.893986749142076 (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 : 2.17 us (1.0%)
patch tree reduce : 551.00 ns (0.3%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 206.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (61.3%)
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 | 8.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 346.0242605400574 (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.75 us (1.2%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.3%)
LB compute : 213.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 9.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 562.6335617807122 (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 : 2.39 us (1.0%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.1%)
LB compute : 225.14 us (97.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 9.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 700.3586623789423 (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 : 2.29 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 182.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.6%)
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 | 7.730e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 947.0000222033888 (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 : 1.87 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 176.90 us (96.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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,-1.3877787807814457e-17,0)
sum e = 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 | 7.591e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1048.073400757703 (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.11 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1089.843702792794 (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.15 us (1.1%)
patch tree reduce : 471.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 191.56 us (96.6%)
LB move op cnt : 0
LB apply : 1.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1111.8221304697058 (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.36 us (1.3%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 179.34 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 7.614e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1195.4913882924434 (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 : 2.06 us (1.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 7.535e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1246.1269771986351 (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.11 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 205.45 us (96.8%)
LB move op cnt : 0
LB apply : 1.26 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
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 | 7.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1223.1695984263188 (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.02 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.33 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1361.0231806748443 (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.05 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 173.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.606e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1351.7316508610877 (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.07 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 205.00 us (96.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.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 | 7.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1343.61574254356 (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.00 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.8%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1541.9407173718544 (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.05 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 = (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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1664.1609847922368 (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 : 1.84 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.274e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1632.236500432062 (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.14 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 199.02 us (96.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.0%)
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 | 7.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1561.299202619932 (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 : 1.96 us (1.0%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 194.49 us (96.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (64.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 = (-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 | 7.601e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1701.6532146897346 (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.16 us (1.0%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 201.16 us (96.7%)
LB move op cnt : 0
LB apply : 1.35 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (68.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 = (0,0,0)
sum e = 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 | 7.406e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1829.3924892806554 (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 : 1.91 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.30 us (96.3%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.337e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1938.4252862639546 (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 : 1.92 us (1.2%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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,-2.7755575615628914e-17,0)
sum e = 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 | 7.332e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2040.5776771193853 (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 : 1.79 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 7.582e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2080.551871980511 (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 : 1.99 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.422e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2245.058504723598 (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 : 1.96 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 = (-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 | 7.714e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2286.3028968941594 (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.15 us (1.4%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.38 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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 = (-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 | 7.345e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2545.8295741390643 (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 : 1.91 us (1.1%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.500e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2648.2172708572707 (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.06 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.9267721733386 (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 : 1.91 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 188.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.218305382688 (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.05 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (49.2%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3468.4731795930265 (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.19 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.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 | 7.715e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3327.4457058715084 (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.34 us (1.5%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.62 us (95.6%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.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 = (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 | 7.190e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3819.713614744334 (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.32 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 166.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.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 = (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 | 7.204e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4083.744331574232 (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.06 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 164.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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,0,0)
sum 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 | 7.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4054.661058596154 (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.14 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.2%)
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 | 7.357e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4602.390909746546 (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.16 us (1.4%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.65 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 7.122e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5108.233692658615 (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 : 1.98 us (1.2%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.49 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.003e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5586.149501142666 (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.14 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.0%)
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 | 7.700e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5466.62438005402 (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.07 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (67.8%)
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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6292.036723111538 (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 : 1.81 us (1.1%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.600e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6426.218825939519 (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 : 1.99 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 = (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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7299.219019579035 (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 : 1.87 us (1.2%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 = (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 | 7.433e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7639.276344737366 (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.07 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 168.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (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 | 7.467e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8204.148280730346 (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.04 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.9%)
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 | 7.364e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8977.603635695414 (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.08 us (1.3%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 154.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.4%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9951.5048027821 (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.02 us (1.3%)
patch tree reduce : 762.00 ns (0.5%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.66 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 | 7.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9775.15477512857 (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.05 us (1.4%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.614e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12575.059725681847 (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.12 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12804.342368886864 (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.07 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.0%)
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 | 8.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11967.455841376015 (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 : 1.73 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 181.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14347.964455344878 (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.01 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 184.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.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 = (0,0,0)
sum e = 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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16040.966196080273 (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.25 us (1.5%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.63 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.4%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17305.656185992277 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.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,0,0)
sum e = 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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18584.73547026027 (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 : 1.77 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 167.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19988.813544129036 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.9%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21982.282466233642 (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 : 1.66 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22773.9278369139 (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 : 1.77 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.9%)
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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26115.12712096441 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27938.403171168335 (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 : 1.61 us (0.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.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 | 7.532e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27070.26840736366 (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 : 1.84 us (0.8%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 234.94 us (97.0%)
LB move op cnt : 0
LB apply : 1.82 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (72.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 | 7.629e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28679.244313589228 (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 : 1.67 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.5%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32454.703508324015 (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 : 1.92 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.000e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35868.50609292057 (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 : 1.87 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.4%)
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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36702.68741714133 (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 : 1.86 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.53 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (63.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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40870.00209301306 (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 : 1.74 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.2%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44429.20462114754 (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 : 1.86 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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 | 6.673e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48812.657903885156 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 6.708e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51632.57669243657 (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 : 1.74 us (0.9%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 180.55 us (96.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52774.19097529188 (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 : 1.90 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 169.59 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56500.097794198475 (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 : 1.83 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58891.55902773595 (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 : 1.69 us (1.1%)
patch tree reduce : 510.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62099.371397709285 (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 : 1.86 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.273e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63006.54797145394 (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.12 us (1.3%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 7.235e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66580.69627303336 (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 : 1.89 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 167.81 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 7.575e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66703.12949816472 (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 : 1.81 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 177.25 us (96.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75640.33525939233 (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.12 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.41 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82663.70728077761 (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.00 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82071.1111856692 (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 : 1.88 us (1.0%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 177.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86071.56944898923 (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 : 1.67 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.29 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.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 = (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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90765.78292773549 (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 : 1.86 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.74 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.5%)
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 | 6.806e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93815.03182101595 (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 : 1.89 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95713.94382923094 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.8%)
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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98216.74492697431 (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 : 1.73 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.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,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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98100.92260834442 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100540.00882278381 (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 : 1.92 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.6%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102145.40557278132 (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 : 1.81 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.6%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106312.0557134996 (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 : 1.73 us (1.0%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100505.12996402138 (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 : 1.92 us (1.3%)
patch tree reduce : 530.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.1%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104429.60348039077 (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 : 1.84 us (1.2%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107827.03309252174 (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 : 1.92 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106129.46389531274 (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.38 us (1.1%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 212.24 us (96.7%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (69.5%)
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 | 8.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89697.83633176246 (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 : 2.11 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102078.96973196646 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 147.51 us (95.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107355.61938380975 (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 : 1.89 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 155.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102069.48680767468 (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.65 us (1.5%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.64 us (95.8%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.132e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99749.25911955931 (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 : 1.71 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 14.69 us (8.7%)
LB compute : 148.30 us (87.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98365.46158689616 (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 : 1.75 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.38 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99955.53698459084 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96291.84744472966 (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 : 1.85 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92880.74905547484 (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 : 1.78 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.714e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93076.43892305915 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87831.92759930155 (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 : 1.92 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (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 | 6.610e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87801.07423056617 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81059.11922474254 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.4%)
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 | 7.374e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72225.01898029403 (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 : 1.89 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71874.91370981523 (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.04 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 178.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67623.45939490339 (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 : 1.72 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67216.63596417049 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61110.54533449627 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59225.39023846964 (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 : 1.75 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.12 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56638.63263219904 (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 : 1.80 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.9%)
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 | 6.452e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56262.97623005583 (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.14 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.980e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48783.62346466611 (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 : 1.94 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45354.81023109742 (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 : 1.80 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 6.816e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43695.535388652344 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39976.50063636641 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37643.91406004337 (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 : 1.72 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.62 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33723.128356943715 (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 : 1.71 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.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 | 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 | 6.792e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32884.37135741739 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (59.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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30179.653326378866 (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 : 1.73 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.9%)
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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28233.00666352532 (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 : 1.72 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26109.556878970332 (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 : 1.69 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.37 us (96.3%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.4%)
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 | 6.748e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24304.834094338104 (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 : 1.73 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22239.695580152144 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.53 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.7%)
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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20648.295652240733 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.8%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18909.39461046436 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.56 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17395.851789211636 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.556e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16681.228957360465 (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 : 1.72 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14656.16474772169 (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 : 1.90 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.0%)
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 | 6.809e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13614.348080319098 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10955.80892943238 (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.07 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 164.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (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 | 7.233e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10856.628425282654 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10209.571581501777 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9186.423593771813 (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 : 1.98 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9067.669013408018 (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 : 1.90 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 6.667e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8465.193957562584 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7700.089146773637 (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 : 1.74 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7071.017286302655 (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.02 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 143.25 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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,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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6614.36683898731 (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 : 1.64 us (1.1%)
patch tree reduce : 540.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 140.91 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (58.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 = (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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6132.919276875905 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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,-1.3877787807814457e-17,0)
sum 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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5347.063106651098 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.04 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.549e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5335.300624145031 (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 : 1.79 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.493e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4984.333447109264 (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.40 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.58 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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 = (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 | 6.599e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4548.103556136047 (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 : 1.78 us (1.0%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 172.71 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 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.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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3902.011413231539 (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 : 2.26 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 152.50 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.0%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3709.4938659822583 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 152.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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 = (-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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3407.9175451290016 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3189.949407324828 (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 : 1.68 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3151.017347977253 (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 : 1.80 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 141.83 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 6.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018.398643399133 (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 : 1.89 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (-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 | 6.568e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.9865653109805 (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 : 1.72 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2542.616405129089 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.9%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2331.1165981812496 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.37 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.6%)
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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2296.6519247637716 (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 : 1.67 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.53 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 6.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2124.439769994419 (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.02 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2039.2754374221206 (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 : 1.74 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1979.8005259338079 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1859.557283267484 (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 : 1.71 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.6%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1744.5819702688161 (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 : 1.77 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 187.67 us (96.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (50.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 = (-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 | 7.377e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1570.0118763709868 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 144.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1640.755905017926 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1469.7428795988685 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.91 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1521.755110487702 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.3%)
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 | 6.721e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1506.6152753755791 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.625e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1489.8588924912772 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.45 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.1468823496864 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 173.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.8272530331947 (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 : 1.64 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 173.10 us (96.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.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 = (0,0,0)
sum e = 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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1335.4132705826758 (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 : 1.60 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.81 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.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.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 | 7.454e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1235.447589368627 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.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 = (-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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1262.7434145416935 (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.59 us (1.7%)
patch tree reduce : 802.00 ns (0.5%)
gen split merge : 611.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.7%)
LB compute : 145.53 us (93.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (58.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,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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1291.476898771817 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1356.3770907541862 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.77 us (96.2%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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,-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 | 6.522e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1390.7654617182588 (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 : 1.88 us (1.3%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.489e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1404.2345928394134 (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 : 1.73 us (0.9%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 181.72 us (96.7%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (67.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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1279.8180969122197 (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.02 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 520.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.02 us (95.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.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 = (0,0,0)
sum e = 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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1324.4807408056301 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.81 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1385.3100878406126 (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 : 1.93 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 165.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1316.4546548762066 (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 : 1.82 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 = (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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.7068176274158 (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 : 1.94 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.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,0,0)
sum e = 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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1459.168913937616 (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.04 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.0%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1484.9712891428298 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1543.3382255779163 (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.00 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.96 us (95.5%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (-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 | 6.773e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1620.6375964535173 (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 : 1.70 us (1.0%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1698.6185780445014 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 153.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 = (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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1722.3722777409282 (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 : 1.71 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (59.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 = (0,0,0)
sum e = 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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1827.267807864856 (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 : 1.71 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.62 us (96.2%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (68.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 = (-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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1814.392728962983 (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.37 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.73 us (95.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (-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 | 7.031e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1913.9796968431804 (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 : 1.69 us (1.0%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 = (-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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2091.184468205647 (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.14 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 147.09 us (95.4%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 6.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2206.9073893235563 (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 : 1.70 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 6.705e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2334.1744857215895 (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 : 1.71 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.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 = (0,0,0)
sum e = 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 | 6.674e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2476.334651939761 (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 : 1.72 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2569.629078015058 (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 : 1.92 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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 = (-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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2663.5784186729848 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.936384669885 (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 : 1.72 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.87 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.438e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3252.0576510211313 (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 : 1.87 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.2%)
LB compute : 144.82 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3316.853643647797 (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 : 1.94 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (72.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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3358.8376420969716 (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 : 1.86 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 178.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3587.292838250417 (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 : 1.59 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.36 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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,0,0)
sum 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 | 6.669e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4076.929665965273 (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 : 1.68 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.18 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4250.5871418452925 (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 : 1.74 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.14 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.609e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4723.750764256552 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 6.581e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5091.944245262747 (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.11 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5196.135986533032 (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.23 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 150.29 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 6.627e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5840.050402103258 (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 : 1.83 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 174.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5889.677534253729 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6605.033959574348 (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 : 1.67 us (1.1%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 8.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5929.388950772473 (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 : 1.92 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (57.0%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7357.465440525744 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.915e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8121.214278454893 (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 : 1.84 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.53 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (59.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 = (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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8696.77901976919 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.21 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (58.8%)
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 | 6.488e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10077.333563815715 (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 : 1.90 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.4%)
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 | 6.616e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10667.400525500845 (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 : 1.64 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (59.8%)
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 | 6.643e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11468.26234415483 (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 : 1.57 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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 | 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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12104.63308993306 (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 : 1.66 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.94 us (96.3%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13092.420631645055 (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 : 1.80 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 6.775e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14151.402724425792 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.546e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15808.30996591864 (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 : 1.90 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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.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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16103.64675989823 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18346.539444030986 (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 : 1.69 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18646.093036268678 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20537.55798520757 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.742e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22379.07185776568 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24243.568476285785 (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 : 1.70 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25305.94280919318 (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 : 1.87 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 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 | 6.623e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28373.898563615574 (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 : 1.72 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 6.703e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30114.854391896162 (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 : 1.81 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.14 us (88.5%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31944.366119949977 (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.06 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.4%)
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 | 6.907e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33631.20070179533 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36396.525232680615 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.17 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39890.185280306985 (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 : 1.77 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 6.768e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41997.10519257283 (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 : 1.85 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.0%)
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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44432.262062768335 (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 : 1.73 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47554.87528992349 (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 : 1.59 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50809.049249210446 (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 : 1.68 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 6.749e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54055.196487583686 (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 : 1.87 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 471.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56476.57126907013 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58166.88122492852 (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 : 1.66 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63196.48404265475 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.1%)
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 | 6.515e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69884.74230348539 (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.27 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.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 = (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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69082.18798127939 (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 : 1.91 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.65 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (66.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,-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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74605.33946713811 (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 : 2.02 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 143.02 us (95.7%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76233.72722203139 (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 : 1.81 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80224.50961351204 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.83 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,-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 | 6.651e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86030.34039048315 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.4%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86916.7512918323 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 149.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.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 | 6.716e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91718.87590137077 (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 : 1.81 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 6.703e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94966.96049066471 (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 : 1.62 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.2%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95095.88282843369 (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 : 1.81 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.14 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98393.14597388935 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.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,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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100725.4344249602 (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 : 1.72 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.684e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105455.36320050523 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.557e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109417.38554396275 (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 : 1.89 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.55 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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,-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 | 6.552e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111111.07142715948 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102825.69335061587 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.8%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106610.73140770772 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.7%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108459.39109584808 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 155.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106740.55791514085 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.36 us (95.7%)
LB move op cnt : 0
LB apply : 1.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.727e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110820.01573163799 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.72 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108682.28700270652 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.570e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111877.43394316542 (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 : 1.85 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106118.8483822873 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.7%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102478.3623371342 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.7%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102118.67236186286 (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 : 1.92 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99772.62173237266 (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 : 1.90 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.8%)
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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98702.96823287256 (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 : 1.75 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91653.87462723702 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.1%)
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 | 7.624e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82609.39685937522 (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 : 1.75 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 6.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90526.22643385998 (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.10 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.40 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.8%)
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 | 6.638e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88207.0963404645 (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.15 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 6.679e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84134.04029365933 (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 : 1.96 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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.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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77239.68836665846 (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.00 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 541.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.50 us (95.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.7%)
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 | 6.742e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76133.62414055904 (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 : 1.94 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.13 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71122.08612873065 (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 : 1.75 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67049.21640730329 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62919.82496719267 (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.19 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 6.653e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62355.19817836565 (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.25 us (1.5%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 9.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42490.970951490686 (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.06 us (1.3%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.83 us (95.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (48.4%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52585.757870762594 (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.05 us (1.3%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.36 us (95.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51382.27849542719 (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.06 us (1.2%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.9%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47307.42551015591 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44929.85497415683 (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 : 1.82 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 171.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.7%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40167.63806922059 (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 : 1.84 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37456.07635704417 (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.34 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.77 us (95.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.741e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36204.28448615188 (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 : 1.87 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 141.17 us (95.3%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.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 = (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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33424.33878080174 (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.07 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 601.00 ns (0.4%)
LB compute : 150.12 us (95.3%)
LB move op cnt : 0
LB apply : 1.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 6.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31751.578476342813 (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 : 1.87 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.21 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.555e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29704.42298996851 (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 : 1.88 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25825.593873176374 (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.16 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.79 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24150.501557395994 (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 : 1.73 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22618.95591273117 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.5%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21194.451805727414 (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 : 1.96 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 6.918e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18917.785973187667 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.578e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18334.530839514457 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.58 us (95.8%)
LB move op cnt : 0
LB apply : 1.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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,0,0)
sum e = 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 | 6.518e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17043.955385292753 (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 : 1.65 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.7%)
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 | 6.722e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15219.61014699747 (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 : 1.63 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.5%)
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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13251.413510874225 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12417.520030347236 (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 : 1.66 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11214.38840254925 (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 : 1.92 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.3%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10773.629631944794 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.543e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10329.7760895557 (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 : 2.13 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8839.610455688631 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.535e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8770.414109986985 (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.11 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.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 = (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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7658.326197220757 (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 : 1.92 us (1.1%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 = (0,0,0)
sum e = 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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7125.29504573036 (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.00 us (1.4%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 139.74 us (95.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6618.017304995301 (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 : 1.68 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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 | 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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6027.293871731499 (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 : 1.85 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.4%)
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 | 6.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5648.307071970708 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 = (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 | 6.602e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5369.7164748330415 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 145.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 6.716e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4887.780789019779 (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 : 1.94 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 = (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 | 6.687e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4550.858860031831 (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 : 1.70 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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,1.3877787807814457e-17,0)
sum e = 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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4182.945022008181 (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 : 1.69 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3772.168446405465 (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 : 1.74 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.09 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (59.1%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555.7316549718566 (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 : 1.80 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.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,0,0)
sum e = 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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3225.8705634987914 (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 : 1.77 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.23 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.714e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3173.168712653276 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 | 6.652e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997.232833316659 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.547e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2855.8806146314464 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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 = (-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 | 6.954e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.8799990023417 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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,2.7755575615628914e-17,0)
sum e = 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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2420.557977924253 (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 : 1.65 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.73 us (96.3%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2218.71417184439 (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 : 1.71 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.78 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 6.691e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2209.151028159304 (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 : 1.74 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.98 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1956.0689803233809 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1965.239445815827 (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 : 1.87 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.82 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.696e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1899.4299355798091 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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 = (-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 | 6.756e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1800.6224959594276 (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 : 1.84 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (69.5%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1709.803137848026 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1612.816864900196 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1593.5897941282096 (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 : 1.80 us (1.2%)
patch tree reduce : 531.00 ns (0.4%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (-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 | 6.642e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1578.0272910595015 (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 : 1.69 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.41 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1500.5591744101405 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.652e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1490.3195330932567 (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 : 1.86 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 168.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (-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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1425.1107748920795 (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 : 1.62 us (1.1%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.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 | 6.698e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1418.3608912423456 (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 : 1.64 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.2366614173131 (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 : 1.69 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 = (-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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.3040191948287 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 6.538e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1397.8496332079308 (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.10 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.36 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.584e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.7495548257518 (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.22 us (1.4%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.55 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (57.1%)
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 | 7.707e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1175.3681459539077 (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.08 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 148.57 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.7%)
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 | 6.755e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1341.9244971341197 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.5%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1327.6792368851204 (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.60 us (1.6%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.16 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.022e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.7756654108819 (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 : 1.79 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 142.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.2%)
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 | 6.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.3076464782532 (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 : 1.73 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.16 us (96.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1330.155266994342 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.681e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1430.9573739235527 (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 : 1.69 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,0,0)
sum e = 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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1407.401688022859 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 = (0,0,0)
sum e = 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 | 6.521e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1531.5832680208782 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.20 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.671e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1537.1652412678036 (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 : 1.84 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.5%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1544.219806507769 (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 : 1.60 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 = (-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 | 6.755e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1614.5476901788354 (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 : 1.68 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1635.0620457392952 (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 : 1.67 us (1.1%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1732.5527057607098 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.5%)
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 | 6.571e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1858.696648591792 (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.05 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 149.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.2%)
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 | 6.616e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1927.1016274002382 (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 : 1.63 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.50 us (96.5%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 = (-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 | 6.716e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1986.4741720163734 (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 : 1.77 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 192.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 = (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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1956.8401162260686 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 = (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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2147.090913281921 (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.28 us (1.5%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.77 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2244.744155111746 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (-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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2351.2892552192952 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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,0,0)
sum e = 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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2501.746133429705 (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 : 1.97 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2631.7675008143715 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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,0,0)
sum e = 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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2818.715756336298 (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 : 1.83 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.47 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.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 = (-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 | 7.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2616.1998700959803 (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.01 us (1.1%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 168.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.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,0,0)
sum 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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3087.5611485992845 (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 : 1.89 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.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,0,0)
sum 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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3284.790520567345 (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 : 1.78 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.854e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3663.5495415055766 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.017e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3826.730046154411 (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 : 1.71 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 154.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4091.5076905992078 (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.10 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.87 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,-1.3877787807814457e-17,0)
sum 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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4436.725771992481 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.2%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4816.008214116203 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5086.8665904774325 (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 : 2.15 us (1.5%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.72 us (95.6%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.614e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5773.82354540348 (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 : 1.93 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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,0,0)
sum e = 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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5883.9197479853465 (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 : 1.68 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (59.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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6260.961515388042 (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 : 1.91 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6827.982924767415 (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 : 1.68 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.39 us (95.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7368.44709179862 (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 : 2.00 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (63.2%)
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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7899.159125599809 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.49 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8721.251751379501 (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 : 1.79 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.728e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9582.827456701527 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10389.657142340096 (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 : 1.75 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.7%)
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 | 7.039e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10674.327823197795 (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 : 1.73 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (63.7%)
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 | 7.301e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11109.812820749665 (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.25 us (1.5%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 143.41 us (94.9%)
LB move op cnt : 0
LB apply : 1.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (50.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,-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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12590.403093746545 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13342.35291126804 (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 : 1.78 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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,0,0)
sum e = 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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14609.81990632083 (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 : 1.89 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (55.6%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16082.97504837705 (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 : 1.74 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.760e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17580.002233039562 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18642.127994797298 (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 : 1.75 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.2%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19767.553155396556 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.0%)
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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21256.28193159318 (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 : 1.89 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.951e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23065.451109098023 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.7%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25168.15982527522 (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.05 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.255e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25573.236214006534 (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 : 1.96 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.17 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.293e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27333.063011503702 (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 : 1.98 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29819.740237173362 (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 : 1.77 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 | 6.680e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34352.636945894075 (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.21 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.55 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36226.23906434332 (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 : 1.88 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39053.64517890333 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (68.0%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40014.44252282405 (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 : 1.97 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 351.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.1%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41480.95696344821 (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 : 1.81 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (59.3%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45847.331674743655 (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 : 1.94 us (1.3%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.19 us (95.7%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.1%)
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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49577.95475912635 (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 : 1.97 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (66.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 = (0,0,0)
sum e = 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 | 6.983e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51720.73909397517 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 6.717e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57017.581158605244 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59301.943166537334 (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 : 1.92 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.637e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64519.01583168399 (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 : 1.68 us (0.9%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 178.73 us (96.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.7%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63986.08589997143 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68444.57744859678 (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 : 1.76 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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.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 | 6.914e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72123.53971279647 (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 : 1.73 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73505.01538777522 (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.08 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79844.69210255379 (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 : 1.75 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.600e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86173.09667975317 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.608e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89473.96698172079 (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 : 1.72 us (0.9%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 188.11 us (96.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.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 = (0,0,0)
sum e = 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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84200.52912024576 (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.19 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 7.025e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90216.00963780368 (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 : 1.66 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94551.82471983267 (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.00 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.297e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92064.15548575095 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.04 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95404.08723992654 (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 : 1.80 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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.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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100679.08724102809 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (55.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 = (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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103817.55418165124 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.9%)
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 | 6.690e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108767.05413390377 (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 : 1.98 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 184.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102563.96447755 (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.17 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.97 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.4%)
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 | 6.914e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107460.59864648747 (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 : 1.88 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106158.6452202244 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.1%)
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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108189.28835137495 (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 : 1.78 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 6.845e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109225.03928704523 (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 : 1.85 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.8%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106433.3824777418 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106500.81989836063 (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 : 1.87 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 147.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (58.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 = (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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108380.4167329246 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 = (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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104312.15437286234 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104557.8875589633 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.79 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 6.748e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102424.25202665705 (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 : 1.70 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 175.61 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (74.4%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93130.45218577635 (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 : 1.84 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93724.22460252763 (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.42 us (1.5%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.42 us (95.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89719.79193693642 (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.17 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84928.78206802542 (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 : 1.92 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84848.16447791568 (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 : 1.97 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83182.63692356534 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 163.20 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.5%)
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 | 2.353e-03 | 0.1% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23117.78299268527 (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.34 us (0.4%)
patch tree reduce : 520.00 ns (0.1%)
gen split merge : 431.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.0%)
LB compute : 551.05 us (98.5%)
LB move op cnt : 0
LB apply : 1.91 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (77.1%)
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.188e-03 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43736.257540470164 (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 : 1.95 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.85 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 = (0,0,0)
sum e = 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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72514.12827493431 (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 : 1.72 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (68.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 = (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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65982.22550697095 (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 : 1.82 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64052.4789982543 (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 : 1.69 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59176.70220976295 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 153.84 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54683.679920515606 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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,0,0)
sum 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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53489.87017172668 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 144.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51029.8522943223 (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 : 1.89 us (0.5%)
patch tree reduce : 370.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 391.39 us (98.4%)
LB move op cnt : 0
LB apply : 1.40 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 9.626e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34084.91222441551 (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 : 1.85 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44018.5033287025 (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.04 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42978.96951051275 (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 : 1.96 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38474.91190252412 (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.02 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.651e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37320.39872726549 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32858.994259056635 (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 : 1.85 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.2%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30950.903904492112 (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 : 1.91 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 181.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.1%)
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 | 7.531e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26316.11059044772 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26304.095573705254 (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 : 1.79 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.40 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24348.198522888204 (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 : 1.85 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21506.83774295348 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.83 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 | 6.994e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20668.72921552502 (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.01 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19943.288434389677 (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.06 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17534.987167332998 (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 : 1.99 us (1.1%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 179.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15466.823802689207 (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 : 1.91 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 = (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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14613.920333161663 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.50 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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,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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13819.745950137094 (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 : 1.67 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.7%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12757.545917553063 (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 : 1.79 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 = (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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11260.552006266584 (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.06 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10444.550806902726 (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 : 1.98 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (53.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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9938.851640075647 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.60 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.5%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9271.221381332663 (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 : 1.77 us (1.2%)
patch tree reduce : 580.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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,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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8694.673798469123 (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 : 1.83 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 180.97 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7616.96683222994 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.79 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7066.02284379982 (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 : 4.71 us (3.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.18 us (94.4%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6602.698283021649 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5980.013737921765 (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 : 1.97 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.3%)
LB compute : 161.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (69.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 = (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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5475.097676290965 (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 : 1.62 us (1.0%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 158.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5129.278792339237 (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.19 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4769.253240810962 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4595.119314188177 (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 : 1.97 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 165.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.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 = (0,0,0)
sum e = 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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4053.223134569577 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 = (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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3941.979010929025 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 = (-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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3632.1898442754186 (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 : 1.73 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.41 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3355.9845872360816 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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 = (-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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3095.4300558797518 (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 : 1.76 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.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 = (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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2869.3220692999294 (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 : 1.80 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.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 = (0,0,0)
sum e = 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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2606.118626301397 (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 : 1.89 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (-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 | 6.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2585.1018234850276 (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.00 us (1.2%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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,2.7755575615628914e-17,0)
sum e = 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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2399.126754253915 (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.02 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2317.012186976669 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.5%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2145.1632746220503 (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 : 1.77 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1967.1242843842192 (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 : 1.76 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1943.0613959659997 (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 : 3.70 us (2.0%)
patch tree reduce : 590.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.25 us (95.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.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.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 | 7.290e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1762.783417837427 (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 : 1.87 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1707.2767195633623 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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-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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1686.1314386656018 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1632.0827542184409 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1547.975164537841 (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 : 1.89 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.84 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1481.5992766659194 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.3%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1485.5758192558587 (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 : 1.78 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1462.8116032208395 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1405.5524510238326 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1378.9975927445435 (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 : 1.73 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.2052072754916 (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 : 1.81 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.4%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1310.932411612019 (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 : 1.84 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 158.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1278.499956578038 (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.17 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1277.496175582255 (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 : 1.92 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.7%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.6876630494437 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.0%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.013107540887 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 782.00 ns (56.5%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1315.1943378882038 (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.20 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.1%)
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 | 6.946e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.3206158161272 (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 : 1.86 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.30 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1319.66085177617 (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.44 us (1.5%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 154.04 us (95.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.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 = (-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 | 6.971e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1343.3524633212044 (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 : 1.73 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.2%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1375.6649007155631 (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 : 1.97 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (65.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 = (0,0,0)
sum e = 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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1342.6776260201786 (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 : 2.19 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1457.7575101155167 (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 : 1.73 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 = (-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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1461.5632854548078 (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 : 1.75 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1482.9231121969567 (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 : 1.73 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.60 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.0%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1575.2644841880558 (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 : 1.91 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1650.8030136158775 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.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 = (-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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1685.7225762712296 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1750.032178336849 (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 : 2.17 us (1.2%)
patch tree reduce : 440.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 177.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1749.7477873120108 (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.09 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (70.9%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1900.8913765240684 (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 : 1.85 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.11 us (95.4%)
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 | 7.038e-04 | 2.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1966.829480736745 (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.30 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.09 us (95.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (-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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2123.3358838989006 (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 : 1.74 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 143.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2179.539009784223 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2277.855025524031 (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 : 1.83 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (0,0,0)
sum e = 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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2435.466975421531 (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 : 1.83 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 154.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2637.211474396358 (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 : 1.72 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2785.9285899561232 (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 : 1.90 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2839.0049064430104 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.4%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3080.9466790087904 (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 : 1.87 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3310.9600129201294 (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 : 1.87 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (58.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 = (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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3584.4360671365494 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3852.9282517619467 (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 : 1.74 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3935.3402503670695 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4303.464004093646 (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.14 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.12 us (95.6%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 6.759e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4817.426620987027 (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 : 1.85 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.24 us (96.2%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (58.4%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5060.540747609626 (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 : 1.93 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 151.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5262.833396825332 (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.16 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.58 us (95.8%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5796.038706688025 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6275.466727576506 (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 : 1.83 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6577.0943032247205 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.1%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7127.915947073616 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7877.155562009377 (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 : 2.03 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8440.925918514991 (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 : 1.86 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.3%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8868.952003633001 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10044.982658330633 (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 : 1.84 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 156.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.9%)
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 | 6.790e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10882.30408556121 (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 : 1.76 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.5%)
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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11611.680015892462 (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 : 1.73 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12172.281759950845 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 152.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.022e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13242.062997821524 (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 : 1.72 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13939.81454131334 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 = (0,0,0)
sum e = 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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15174.339739444735 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17451.730489971334 (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 : 1.81 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18079.367155573917 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.4%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19695.292172257643 (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.17 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21235.2497197384 (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 : 1.84 us (0.6%)
patch tree reduce : 361.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 295.69 us (97.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.5%)
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 | 8.248e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19133.6250992955 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24560.6332953352 (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 : 1.77 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.16 us (95.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.1%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26021.030894482315 (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 : 1.91 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.4%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27877.527567652454 (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 : 1.95 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (54.3%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30297.31330833268 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 6.766e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33415.88651971772 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.5%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34833.115894398354 (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.04 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 | 6.861e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37791.90049920597 (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 : 1.73 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40052.41234263592 (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.17 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 143.99 us (95.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (55.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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43512.99147736692 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 148.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45551.51101184454 (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 : 1.76 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48054.757708382385 (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 : 2.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51759.529766059386 (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 : 1.79 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.689e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56574.60429845022 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.7%)
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 | 6.721e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59627.099800668024 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61869.78743323348 (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.03 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.784e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65861.74128366316 (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 : 1.74 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (65.1%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67369.16342387727 (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 : 1.64 us (1.1%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71989.66630382351 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76354.3611467524 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74987.71307941517 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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.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 | 6.629e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85141.59338675402 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86346.45075064605 (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.08 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89237.00208658088 (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 : 1.88 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.64 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89841.24991481444 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.0%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94493.2276338265 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98313.041876752 (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 : 1.89 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.8%)
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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96267.96501477671 (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 : 1.75 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.7%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100346.54414270465 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102963.16652045988 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.602e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110082.07374540348 (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 : 1.74 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 182.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102533.46324842384 (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 : 1.88 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 170.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (69.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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105906.74531395223 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.4%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109853.35038877439 (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 : 1.59 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.32 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108687.97135960481 (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 : 1.72 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.709e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111757.13343744958 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.575e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113593.03584492354 (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.34 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.0%)
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 | 6.854e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108178.07427003769 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111727.91539413917 (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 : 1.67 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.686e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108208.64465870254 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103401.73994558728 (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 : 1.88 us (1.3%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 140.16 us (95.9%)
LB move op cnt : 0
LB apply : 952.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.830e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101974.34174469384 (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 : 1.96 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.78 us (95.7%)
LB move op cnt : 0
LB apply : 1.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 = (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 | 6.661e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102081.75388598056 (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 : 1.82 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 157.26 us (96.3%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92268.10701146303 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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,0,0)
sum e = 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 | 6.512e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98571.8581906879 (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 : 1.90 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.33 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.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,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 | 6.672e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93025.3480327559 (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 : 1.65 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86416.01986402024 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 6.730e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85448.05587357734 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.6%)
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 | 6.724e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81953.8226292662 (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.09 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.33 us (94.5%)
LB move op cnt : 0
LB apply : 2.80 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76459.25023363107 (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.09 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.641e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75551.09195684596 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.61 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.6%)
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 | 6.511e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73243.07837071795 (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 : 1.74 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.49 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 6.636e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68120.6117898495 (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 : 1.71 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.58 us (96.2%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.5%)
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 | 6.768e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63153.13683080823 (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 : 1.65 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 140.57 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56433.25802913173 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (52.4%)
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 | 8.469e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44810.65077705488 (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 : 1.70 us (1.1%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 481.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 143.14 us (95.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53435.97681900273 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.705e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49824.10053212987 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46870.44761297968 (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.25 us (1.5%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.11 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.519e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44765.969871410685 (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 : 1.81 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (73.0%)
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 | 6.823e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39868.377700812496 (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 : 1.71 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.59 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.5%)
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 | 6.665e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37978.39017680436 (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.01 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 140.86 us (95.6%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34825.60718812456 (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 : 1.61 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 143.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31309.860491538235 (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 : 1.75 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28920.094628446972 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.48 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.7%)
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 | 6.661e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28114.491264810073 (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.05 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 167.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24579.8781471403 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23413.803474975583 (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 : 1.65 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.71 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 6.660e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22174.294510408567 (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 : 2.18 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 | 6.723e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20261.159218324334 (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 : 1.76 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.44 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.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,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 | 6.731e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18654.42312325927 (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 : 1.65 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.70 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16279.346351228802 (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 : 1.83 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.525e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16325.83653339894 (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 : 2.01 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.590e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14883.285205318061 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.539e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13804.672694349556 (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 : 1.60 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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 = (0,0,0)
sum e = 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 | 6.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12346.9085285558 (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 : 1.66 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10617.763527051664 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 144.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10250.205955632915 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9579.11423090012 (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 : 1.70 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8914.164517970847 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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 | 6.530e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8415.733442000119 (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 : 1.85 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 198.84 us (96.9%)
LB move op cnt : 0
LB apply : 1.26 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (70.6%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7066.37298008157 (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 : 1.61 us (0.9%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 182.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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.216e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3841.216464459752 (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.11 us (1.3%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.759e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6377.778742114308 (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 : 1.98 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 6.769e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5882.302000194505 (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 : 16.20 us (9.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.80 us (88.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.7%)
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 | 6.767e-04 | 2.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5440.008405019103 (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 : 1.65 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.30 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (58.9%)
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 | 6.634e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5134.850107331551 (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 : 1.71 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.17 us (96.2%)
LB move op cnt : 0
LB apply : 891.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4556.376175998999 (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 : 1.63 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.65 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4160.662534419842 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.874e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3956.77820427585 (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 : 1.95 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.605e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3830.9880193323847 (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.13 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.70 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.625e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3559.138524524549 (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 : 17.31 us (10.0%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.88 us (87.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.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 | 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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3206.61670344507 (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 : 1.64 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.01 us (87.3%)
LB move op cnt : 0
LB apply : 15.98 us (9.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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,0,0)
sum e = 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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997.9350807590035 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 6.707e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.509707829898 (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 : 1.59 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 140.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.562e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2758.4016600244486 (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 : 2.48 us (1.6%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.13 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2437.745778172821 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2345.778631899713 (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 : 1.71 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2218.1240578965007 (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 : 1.89 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2098.5576707345294 (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 : 1.93 us (1.0%)
patch tree reduce : 601.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 179.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1929.4408642573746 (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.04 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 = (0,0,0)
sum e = 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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1903.0772676575518 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1836.1233427196757 (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 : 1.95 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1751.5532899766113 (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.53 us (1.6%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.61 us (95.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (0,0,0)
sum e = 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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1668.4532444357878 (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 : 1.79 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (61.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.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 | 6.655e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1654.5786688776807 (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.19 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 198.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.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 = (-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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1461.3276003184474 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.2%)
LB compute : 144.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (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 | 6.492e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1589.0703815345476 (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.04 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1475.5901825295316 (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 : 1.89 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (66.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.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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1444.7535743255967 (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 : 1.84 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1375.3792557558181 (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.01 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.11 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.9%)
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 | 6.630e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1419.8049459128194 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.7705976217685 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.625e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1384.9056499130759 (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 : 1.88 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (71.9%)
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 | 6.498e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1401.0444550147326 (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 : 1.61 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1337.8416365391759 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (-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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1335.8229868563842 (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 : 1.94 us (1.2%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1301.2800069412065 (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 : 1.75 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.37 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 6.730e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1356.7641190714887 (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 : 1.97 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.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 | 6.506e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1416.1549676153013 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (56.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 = (-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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1389.2920464871092 (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 : 1.80 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.8%)
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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1405.9816123451421 (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 : 1.75 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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,0,0)
sum e = 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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1389.1526947909595 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (62.2%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1416.0159664479743 (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 : 1.82 us (1.2%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (-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 | 6.735e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1502.3877176754775 (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.14 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.98 us (95.5%)
LB move op cnt : 0
LB apply : 1.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.733e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1545.5274368589203 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.98 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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.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 | 6.519e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1646.410443311116 (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.20 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (-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 | 6.519e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1702.7666502832 (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 : 1.92 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1675.8823816380786 (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 : 1.91 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1746.8424308445235 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,-5.551115123125783e-17,0)
sum e = 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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1816.0704816087364 (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 : 1.68 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.34 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 = (-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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1885.3559667600668 (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 : 1.88 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 153.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.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,-2.7755575615628914e-17,0)
sum e = 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 | 8.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1527.2831965002495 (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 : 1.87 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2040.0172336849075 (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 : 1.99 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2240.1744601249193 (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 : 1.73 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,0,0)
sum e = 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 | 6.627e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2404.0790802648303 (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.01 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.683e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.5589630578806 (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 : 1.68 us (1.0%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2566.23852176475 (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 : 1.93 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.656e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840.8279778864144 (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 : 1.64 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.17 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.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 = (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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2914.4668582255777 (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 : 1.69 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.3%)
LB compute : 141.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3166.295320479423 (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 : 1.74 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 6.721e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3390.7547303556607 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.636e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3665.5684696364597 (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.12 us (1.4%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.80 us (95.7%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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 | 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 | 6.536e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3977.4482888023626 (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.13 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.41 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 | 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 | 6.863e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4054.01979295203 (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.11 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.0%)
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 | 6.949e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4289.803323195001 (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 : 1.68 us (1.1%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (62.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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4684.3318302302905 (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 : 1.88 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4862.363842954609 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5396.916899697396 (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 : 1.80 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.51 us (93.7%)
LB move op cnt : 0
LB apply : 2.78 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.456e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6145.34001175094 (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 : 1.87 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 6.680e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6392.036032659852 (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 : 1.96 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.576e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6993.28820887483 (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 : 1.86 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 157.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.6%)
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 | 6.689e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7409.01461219438 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 143.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.2%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7806.794016340541 (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 : 1.88 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.64 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8392.332278416821 (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 : 1.69 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.59 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 | 6.658e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9339.451975311298 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 139.88 us (96.0%)
LB move op cnt : 0
LB apply : 962.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 6.604e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10163.34468391708 (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.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.539e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11080.172225364844 (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 : 1.77 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.38 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 = (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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11366.28007172182 (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.46 us (1.6%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 144.57 us (95.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (49.5%)
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 | 6.681e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12642.530393070972 (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 : 1.79 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.79 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.2%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13620.205958795977 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.1%)
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 | 6.618e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14875.728866298667 (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 : 1.68 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.7%)
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 | 6.605e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16088.449674688232 (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 : 1.76 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 142.13 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.536e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17546.426588082377 (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 : 1.71 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.18 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 6.706e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18446.761247862058 (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 : 1.80 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.20 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.1%)
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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19273.786161176176 (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.02 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 169.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20289.52102469922 (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 : 1.75 us (1.1%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.33 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21782.997034718785 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24477.58788546647 (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.04 us (1.4%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26256.183530310558 (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 : 1.75 us (1.1%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28822.215815709264 (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 : 1.95 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.493e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31893.299241948942 (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 : 1.73 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32694.298669380452 (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 : 1.73 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.0%)
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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34790.6685699728 (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 : 1.66 us (1.1%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37329.12785136101 (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 : 1.99 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39046.01246454111 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.476e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44961.47550049006 (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 : 1.74 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 139.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.435e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48254.17380358841 (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 : 1.65 us (0.9%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 177.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.5%)
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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48193.74753385548 (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 : 1.68 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.24 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (58.5%)
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 | 6.778e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51862.74022584658 (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 : 1.84 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.9%)
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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54885.028071537214 (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 : 1.64 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.35 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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.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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57230.487866505704 (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 : 1.95 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.05 us (95.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62172.68269361824 (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 : 1.71 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.555e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67312.86913491137 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.15 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.1%)
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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67466.00077672505 (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 : 1.84 us (1.0%)
patch tree reduce : 601.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71535.94017369948 (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 : 1.73 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.80 us (96.2%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.675e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76736.05854602758 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.947e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77137.22295571037 (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 : 1.93 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79695.65708367906 (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 : 1.92 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.83 us (95.6%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (70.7%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85364.72000310422 (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 : 1.84 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.65 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.1%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87903.9016248017 (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 : 1.97 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 6.680e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93682.06202473391 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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,-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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92620.76211893829 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.2%)
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 | 6.658e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99936.30732232553 (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 : 1.89 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.33 us (96.0%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.0%)
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 | 6.749e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101197.28948179551 (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 : 1.69 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.4%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102222.34264121896 (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 : 1.89 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.82 us (95.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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 | 6.684e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106710.13966330636 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.12 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106765.24102740081 (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 : 1.75 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.477e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113538.24261030465 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 6.706e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110814.97028131096 (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 : 1.84 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110152.1769466754 (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 : 1.66 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 165.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (67.2%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106607.30649635421 (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.18 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.13 us (95.7%)
LB move op cnt : 0
LB apply : 1.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 6.968e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107883.56957277103 (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.18 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 500.00 ns (0.3%)
LB compute : 146.13 us (95.4%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (68.4%)
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 | 6.778e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110590.14226743819 (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 : 1.99 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.61 us (95.2%)
LB move op cnt : 0
LB apply : 1.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.9%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108990.86938040162 (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 : 1.81 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.2%)
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 | 6.722e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109751.27411507902 (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.23 us (1.5%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.54 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.535e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111417.46472842684 (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 : 1.71 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.1%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104790.49622955109 (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 : 1.68 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.19 us (96.2%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (58.0%)
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 | 6.655e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105523.07453974272 (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 : 1.69 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101353.39042618766 (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 : 1.87 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.673e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100164.92446695281 (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 : 1.90 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.85 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 771.00 ns (56.6%)
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 | 6.434e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100866.89064891818 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (95.7%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.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,0,0)
sum e = 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 | 6.508e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96504.78021173184 (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 : 1.68 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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,0,0)
sum e = 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 | 6.652e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91091.56957477516 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83673.04811542454 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.8%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77732.03785834314 (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.05 us (1.4%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.675e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80080.30331088157 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.37 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.462e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78891.71251156132 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70527.48250140538 (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 : 2.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.74 us (95.7%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67587.22295740047 (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 : 1.68 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (0,0,0)
sum e = 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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61911.42371496859 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60593.903753615756 (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 : 1.90 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55474.36293697184 (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.44 us (1.5%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.07 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 6.948e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52322.60545884462 (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 : 1.70 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.6%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49421.07659464776 (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 : 1.91 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 6.595e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48382.26141299028 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 6.502e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45849.33213939059 (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.02 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40775.0330683413 (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 : 1.81 us (1.0%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37783.077978891466 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35409.351188251654 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 7.006e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31879.828118415247 (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 : 1.81 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.87 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.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,4.336808689942018e-19,0)
sum e = 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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29966.93444335697 (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 : 1.99 us (0.5%)
patch tree reduce : 401.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 383.53 us (98.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 9.098e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21075.124074259085 (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 : 1.68 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.1%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25902.599067286163 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.500e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25214.186584568564 (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 : 1.81 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.3%)
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 | 6.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22856.07878551926 (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.21 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.9%)
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 | 6.807e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20505.574006001232 (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 : 1.70 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.14 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18141.85739496646 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.3%)
LB compute : 141.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16943.22599626168 (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 : 1.91 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.80 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.803e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16053.377720268336 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.672e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15069.474403493181 (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.06 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.7%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13266.3276741291 (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.01 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.549e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13004.557493162903 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.2%)
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 | 6.510e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12039.430561909343 (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 : 1.89 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10455.909188781763 (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 : 1.75 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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,0,0)
sum e = 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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9732.86827081384 (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 : 1.81 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.27 us (96.1%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (60.0%)
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 | 6.666e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9171.786069463 (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 : 1.73 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 6.702e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8402.179041093606 (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 : 1.75 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.31 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7571.710860469781 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 6.650e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7194.977593418408 (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.03 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 143.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.640e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6648.920120785685 (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 : 1.75 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 491.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 6.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6068.118718385461 (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 : 1.70 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.73 us (96.2%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.660e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5656.904256785779 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4980.174910403365 (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 : 1.66 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.03 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.4%)
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 | 6.613e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4881.866611587345 (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.14 us (1.4%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.64 us (95.7%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.1%)
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 | 6.482e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4618.810051456402 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.77 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.723e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4134.713995808189 (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.10 us (1.3%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 159.82 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 6.774e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3816.0755357950898 (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 : 1.87 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 152.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.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 = (-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 | 6.830e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3524.9273952992908 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3330.7645914374425 (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 : 1.93 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 6.676e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3143.719620685219 (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 : 1.90 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 147.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (0,0,0)
sum e = 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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2786.628746772454 (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 : 1.90 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2693.2851143014577 (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 : 1.73 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.31 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (62.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 = (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 | 6.515e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2660.589270003912 (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 : 1.68 us (0.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 180.92 us (96.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.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.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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2347.7267026734316 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2270.5174225723194 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.06 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2184.799326037841 (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 : 1.69 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2012.2197689007903 (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 : 1.68 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 6.638e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1987.1416453412412 (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 : 1.76 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.4%)
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 | 6.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.3747706530148 (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.25 us (1.5%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.77 us (95.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.640e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1814.0842073698093 (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 : 1.80 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (45.2%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1666.2111741088347 (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 : 1.74 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 144.49 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.1%)
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 | 6.640e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1675.8586269698478 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1520.5801994419967 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (58.3%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1487.2255575912745 (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 : 1.70 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1457.1623710852953 (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 : 1.59 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 6.764e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1457.3202162281807 (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 : 1.80 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1410.0895092426438 (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 : 1.86 us (1.1%)
patch tree reduce : 591.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 169.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.7%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1356.5471245286947 (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 : 1.93 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 167.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.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.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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1361.90158874716 (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 : 1.76 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1312.3524209771872 (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 : 1.81 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.9043061556433 (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 : 1.59 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.01 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.8%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1351.3803936437755 (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 : 1.80 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.24 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 6.784e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1334.6105844801375 (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.00 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.6%)
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 | 6.858e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1322.1596025407314 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.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,0,0)
sum e = 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 | 6.663e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1367.3750010473586 (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 : 1.68 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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,-2.7755575615628914e-17,0)
sum e = 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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1333.3243109428226 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 550.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 149.90 us (95.6%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1369.8186707940965 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.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 | 8.578e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1099.1016054460738 (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 : 1.97 us (1.3%)
patch tree reduce : 651.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1375.138764281305 (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 : 1.71 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.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 = (-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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1459.6830801584974 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1428.1445830887644 (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.04 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1493.1085388811623 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.596e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1611.7559253936047 (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 : 1.70 us (0.9%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 175.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1606.434635099313 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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 | 6.623e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1719.1733570431186 (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 : 1.87 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1682.981287887174 (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 : 1.70 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 6.748e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1826.579550581485 (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 : 1.74 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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.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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1886.2182460705799 (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 : 1.84 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (73.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.450e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2089.8827459609215 (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 : 1.90 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.624e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2135.3240614600336 (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.02 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.4%)
LB compute : 160.06 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2163.625396834626 (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 : 1.80 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 6.646e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2359.3522460328372 (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 : 1.72 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2400.1231891146977 (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 : 1.94 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (56.3%)
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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2593.382061650833 (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 : 1.70 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2664.1342476018317 (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 : 1.85 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.473e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3048.165207946217 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.72 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 = (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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3094.6893065698155 (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.01 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3215.81695290272 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (64.1%)
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 | 6.819e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3498.8212456264555 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3651.3312573436856 (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 : 1.83 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3951.0969077589184 (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 : 1.91 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4190.285617872346 (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 : 1.88 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (0,0,0)
sum 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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4663.625900572801 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4990.83379833312 (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.17 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 6.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5454.978733640715 (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.10 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.74 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.820e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5693.637311626302 (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 : 1.70 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5799.9720323384145 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 6.730e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6685.006120486219 (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 : 1.73 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7040.303396435676 (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 : 1.83 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.5%)
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 | 6.784e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7703.338621081762 (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 : 1.80 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8191.333178965654 (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 : 1.78 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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,-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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8971.317991520731 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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,-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 | 6.523e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10061.838154891266 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.7%)
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 | 6.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10546.09536612235 (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 : 1.83 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.81 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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,0,0)
sum e = 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 | 6.747e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11338.454890507819 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.5%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11955.337351591781 (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.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.40 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,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 | 6.824e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13068.239112683319 (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 : 1.66 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14029.592948891699 (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.05 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15522.598399596573 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.92 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.2%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16342.472117878513 (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 : 1.92 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.550e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18476.529710598574 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 = (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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19485.576498402177 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21094.80233194367 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.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 | 6.697e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22639.182317187282 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 151.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23704.869481368714 (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 : 1.84 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.562e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26768.96200863319 (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 : 1.77 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27855.44362612216 (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.06 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29993.569357997454 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31661.28821521248 (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.24 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 | 6.976e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33475.83274031999 (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 : 1.69 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.1%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36504.00925717706 (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 : 1.91 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.1%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37560.71947177682 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40743.3691888799 (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 : 1.76 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44681.14917141333 (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 : 1.97 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47908.122385890536 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49755.20392790381 (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 : 1.84 us (1.1%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 158.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52707.07320575554 (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 : 1.93 us (0.8%)
patch tree reduce : 561.00 ns (0.2%)
gen split merge : 461.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 235.52 us (97.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.4%)
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 | 7.623e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51038.476535314476 (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 : 1.70 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.6%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59105.2484711521 (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 : 1.66 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.2%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63765.969024351994 (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 : 1.75 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.95 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65105.912665808166 (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 : 1.85 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69118.14831218797 (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.01 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.69 us (95.5%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (36.2%)
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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73702.20144702592 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 154.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (68.1%)
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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78310.08855813328 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 6.655e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83109.26635528887 (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 : 1.92 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.14 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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,-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 | 7.330e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78610.18109841707 (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 : 1.93 us (1.2%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 161.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.1%)
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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86713.39167828462 (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 : 1.72 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.54 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (58.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 | 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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90395.00142975923 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90288.04780003626 (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 : 1.97 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 = (0,0,0)
sum e = 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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93407.76455459674 (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 : 1.80 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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,-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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100207.07243802193 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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,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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104186.99806205952 (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.06 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105056.00968015732 (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.04 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105523.53419882941 (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 : 1.92 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105624.13189595637 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.7%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107133.58961384791 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108310.53331528488 (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 : 1.67 us (1.1%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 144.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110199.231985266 (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 : 1.77 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.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.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 | 7.345e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102606.85823023648 (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 : 1.79 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.655e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113039.67221860158 (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 : 1.82 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109401.04989612878 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107847.85498049209 (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 : 1.68 us (0.8%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.1%)
LB compute : 214.34 us (97.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (49.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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99507.57209332421 (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 : 1.67 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.6%)
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 | 7.251e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99557.97592362232 (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.13 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 174.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.6%)
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 | 7.309e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96939.9022236734 (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 : 1.77 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89554.24838938772 (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 : 1.86 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.1%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95309.05225785366 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.2%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93691.61151682667 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.35 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.1%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92954.90776804692 (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 : 1.86 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.732e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91261.96620711844 (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.18 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86562.02372415717 (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.03 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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 = (0,0,0)
sum e = 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 | 7.008e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81024.63762283811 (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.21 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 511.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.4%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78543.56593867845 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.0%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74545.41566830175 (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.12 us (1.4%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.0%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69210.26719476408 (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 : 1.74 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.3%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68480.2853207111 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63646.12704271708 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.0%)
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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58876.985779651564 (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.01 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (45.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 = (-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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55428.77050275968 (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.04 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.7%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52488.59523972162 (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 : 1.97 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.79 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (0,0,0)
sum 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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50220.70443644027 (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.07 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47725.113451607554 (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 : 1.95 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43683.75846225803 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.48 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.2%)
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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39196.36701104642 (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 : 1.98 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.24 us (95.7%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38840.79887058097 (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.00 us (1.3%)
patch tree reduce : 521.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 141.66 us (95.3%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (71.1%)
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 | 6.772e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36433.660010258165 (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 : 1.97 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 143.54 us (95.5%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33089.21798393032 (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 : 1.74 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31362.280027308123 (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.23 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28751.68115039539 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.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,0,0)
sum e = 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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26323.506525756726 (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 : 1.75 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24381.427991836674 (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 : 1.81 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.5%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22300.608320473893 (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 : 1.71 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.5%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20591.829663713484 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18979.468919336992 (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.29 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.065e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17254.747460499137 (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 : 1.92 us (1.3%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.41 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16411.67724879432 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15249.457975341644 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13943.269839043138 (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 : 1.81 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.99 us (88.3%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.816e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12851.409066626491 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11566.907702892906 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (81.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 | 7.299e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10163.279317123388 (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 : 1.91 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9822.53581934972 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.63 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8946.269425589235 (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 : 1.96 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.26 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.694e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8647.50508507917 (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 : 1.89 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.63 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.2%)
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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7800.244164248489 (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 : 1.98 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 = (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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7241.337358087544 (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 : 1.71 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.45 us (96.3%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.1%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6437.332522420691 (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 : 1.80 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5914.573719197785 (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 : 1.72 us (1.1%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.136e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5420.454679275708 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5030.736847893632 (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 : 1.96 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4655.446496939801 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4419.737759888206 (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.07 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4190.1860376188715 (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.06 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 6.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3929.7654040634798 (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 : 1.88 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 183.11 us (96.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.3%)
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 | 9.909e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2487.3496076733513 (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 : 1.89 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.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 = (-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 | 6.803e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3378.1565297930565 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.89 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3122.467446083174 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.61 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2867.518347924353 (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 : 1.98 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2718.1885787002807 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 145.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2582.222257501651 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.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 = (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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2409.946219596751 (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 : 1.79 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2268.932319977637 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.7%)
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 | 6.848e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2171.3366450379162 (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 : 1.93 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2077.241026243145 (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.09 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 6.863e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1953.4671433900794 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.7%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1842.4845013959762 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1721.2898496359398 (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 : 1.85 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.76 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1637.8249376830602 (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 : 1.87 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 159.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 = (-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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1598.7946576764973 (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 : 1.92 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1572.036259459361 (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 : 1.69 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.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.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 | 6.639e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1583.4074652887964 (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.11 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 146.86 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.651e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1534.1837868743899 (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 : 1.69 us (1.0%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1449.8920702611686 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.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,2.7755575615628914e-17,0)
sum e = 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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1404.1672372444873 (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 : 1.84 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1335.0538204884963 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.30 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1363.8437079110229 (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.15 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.933e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.8665934706257 (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 : 1.98 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.16 us (95.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (51.6%)
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 | 6.940e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.516498429392 (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 : 1.73 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 158.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.0%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.1478543588607 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.1%)
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 | 6.621e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1367.81820260987 (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 : 1.76 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.23 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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,-1.3877787807814457e-17,0)
sum e = 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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1327.1827147082024 (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 : 1.66 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.5%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1295.2435487596424 (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 : 1.99 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.3359032284661 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (58.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 = (-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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1332.5111847587716 (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 : 1.94 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (59.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.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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1332.6372035197803 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1378.820841841032 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 = (0,0,0)
sum e = 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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1419.8642763446514 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (-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 | 6.733e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1478.6316264946277 (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 : 1.73 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.7%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1488.1682023022222 (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 : 1.83 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 177.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1480.7953529138097 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.7%)
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 | 8.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.1541186826082 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1601.7050685705522 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 146.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1715.5594074794792 (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 : 1.87 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.48 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1778.8432210067674 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1819.4095122813965 (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 : 1.71 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 | 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 | 6.750e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1965.9308832038253 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.35 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2030.9037006958374 (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 : 2.13 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.63 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.822e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2143.992886233219 (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 : 1.96 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.3%)
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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2279.3508941421173 (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 : 1.89 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 = (-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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2388.5991057250676 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.4%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2429.6336509378793 (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 : 1.90 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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.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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2553.6196205559454 (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.00 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.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.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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2750.4781172716775 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2992.071453995384 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (0,0,0)
sum 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 | 6.710e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3262.587057046335 (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.02 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.43 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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 = (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 | 6.741e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3463.03106953221 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.66 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (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 | 6.728e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3705.7455429008032 (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 : 1.89 us (1.1%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 601.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.6%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3797.358420879559 (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 : 1.84 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.3%)
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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4070.803630858724 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.57 us (94.1%)
LB move op cnt : 0
LB apply : 1.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4279.71622010754 (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 : 1.85 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4791.69301892193 (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.08 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5087.152242096938 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.01 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5442.9929446253345 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5660.20071034556 (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 : 1.93 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.33 us (95.2%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.632e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6619.355264862762 (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 : 1.83 us (1.1%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.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,-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 | 8.375e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5647.073171129561 (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 : 1.88 us (1.1%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.2%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7333.317912599059 (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 : 1.69 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (59.3%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8031.900200922978 (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 : 1.72 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.23 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8529.456266258232 (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.17 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9004.386785006203 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.4%)
LB compute : 147.81 us (95.5%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9878.37542489463 (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 : 1.99 us (1.3%)
patch tree reduce : 510.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 143.10 us (95.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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,0,0)
sum e = 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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10973.605787994813 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.69 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.683e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12050.805467968354 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (55.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 | 6.674e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13028.988998223209 (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 : 1.87 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.29 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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,0,0)
sum e = 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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13196.415273229748 (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 : 1.82 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14167.107116233496 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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,0,0)
sum e = 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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15728.376909165396 (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 : 1.86 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16928.72778592434 (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.07 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.85 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18511.65671437633 (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.25 us (1.5%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.34 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.728e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20408.882208074498 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21641.4105545045 (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 : 1.93 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 6.675e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23875.090754492 (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 : 1.81 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23994.206260957984 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26967.668283582916 (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 : 1.88 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.14 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.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 = (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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28151.383027634412 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30658.206195998413 (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.03 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.2%)
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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31374.176620093673 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35175.53589069196 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.643e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39417.23763810099 (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 : 1.97 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.99 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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 | 6.617e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42295.31043078462 (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.05 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.5%)
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 | 6.850e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43617.65871521807 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.1%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46159.4972938976 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47213.15788606497 (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 : 1.75 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.8%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51533.7428838635 (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 : 1.89 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55676.033042110175 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 6.711e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60282.877977183496 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (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 | 6.823e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62657.40279399011 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.5%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65626.5108561735 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69406.53667937881 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73144.22478763924 (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 : 1.65 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 140.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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.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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74338.70825330913 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79978.87933496095 (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 : 1.87 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81872.12880886339 (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.12 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.59 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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.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 | 6.799e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87104.82250829287 (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 : 1.98 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.3%)
LB compute : 156.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (0,0,0)
sum e = 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 | 8.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76778.11325170638 (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.01 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.7%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89955.19690483088 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.774e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96778.3147454407 (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 : 1.68 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98326.45094335682 (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 : 1.72 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.42 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.9%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101363.45760886834 (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 : 1.97 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.219e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97944.0558484286 (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.25 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101426.9862303039 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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 = (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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103611.78311439985 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106011.68359768951 (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 : 1.78 us (1.2%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.51 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.711e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111538.83031559025 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.59 us (96.0%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110966.2549159285 (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 : 1.72 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.46 us (96.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104401.50701065021 (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 : 1.71 us (1.0%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.31 us (88.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106689.78192654758 (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 : 1.86 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 147.22 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108148.08763347233 (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 : 1.98 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105128.91337561782 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.17 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107554.38289712797 (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 : 1.72 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.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 = (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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101653.57001056898 (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 : 1.91 us (1.2%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103709.65686437636 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (75.2%)
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 | 6.717e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104258.86060736066 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 146.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99986.3113150623 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97231.73986587372 (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 : 1.72 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.38 us (96.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91614.8493921254 (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 : 1.72 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 143.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88425.2226947466 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86012.43707617007 (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 : 1.77 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81121.13294859779 (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.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81157.04688866096 (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.05 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (59.2%)
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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78612.38876047396 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.649e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75755.49965554214 (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 : 1.76 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68956.24582867479 (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 : 1.72 us (1.1%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65434.40000711567 (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 : 1.92 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61171.45266905221 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.33 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (55.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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58602.95005200924 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54329.951359073195 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 153.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51510.27385883708 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.22 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48568.35599697213 (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 : 1.90 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44593.63357083501 (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 : 1.90 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42747.12112254405 (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 : 1.67 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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,4.336808689942018e-19,0)
sum e = 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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39046.08180569272 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37475.0292090624 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.8%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32681.896631329262 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31027.109652095685 (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 : 1.85 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (51.2%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29591.612727262196 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28124.458685094934 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.635e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26141.077610485845 (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 : 1.82 us (1.0%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 168.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,0,0)
sum e = 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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23014.630839341553 (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 : 1.70 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21270.902990906598 (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 : 1.93 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.878e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19830.839250035733 (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 : 1.75 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.79 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17656.457459152287 (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 : 1.94 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.57 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16457.564235894013 (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 : 1.73 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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,0,0)
sum e = 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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15457.096995939992 (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 : 1.90 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14380.595465452998 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (58.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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12665.916411722466 (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.15 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.796e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12235.205444541602 (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 : 1.96 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.8%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11120.057551823025 (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 : 1.69 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.17 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10259.793234017714 (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 : 1.87 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.95 us (95.2%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9119.291822414103 (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.11 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.63 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8611.02199216632 (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 : 1.89 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7880.398925318093 (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 : 1.90 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 = (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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7256.167964340186 (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.03 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 151.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 6.801e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6871.269296891058 (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 : 2.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.715e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6421.784753210741 (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 : 1.79 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5914.161616296899 (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.05 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 143.45 us (95.3%)
LB move op cnt : 0
LB apply : 1.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (51.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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5348.275184750477 (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 : 1.87 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 450.00 ns (0.3%)
LB compute : 143.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4935.409458415361 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.37 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (0,0,0)
sum 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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4560.930851261092 (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.26 us (1.5%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.07 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (56.5%)
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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4302.012575021987 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.0%)
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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4036.6445502014426 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.5%)
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 | 6.616e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3825.1491476180363 (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 : 1.86 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.5%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3362.421601965281 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 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.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 | 9.458e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2326.974730298089 (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.15 us (1.3%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.075e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908.685742452321 (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 : 1.89 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.74 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2768.749781593577 (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 : 1.94 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 152.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2611.3909338063327 (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 : 1.70 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.4%)
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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2383.8554221794852 (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 : 1.77 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.12 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.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 | 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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2305.2508868745126 (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 : 1.94 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 183.75 us (96.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.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 = (-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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2116.9238944016743 (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 : 1.89 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2127.4638532210342 (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.06 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.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 | 6.661e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2049.8380331052313 (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 : 1.98 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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,2.7755575615628914e-17,0)
sum e = 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 | 6.701e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1940.4294710950219 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 6.711e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1850.6270157037768 (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 : 1.83 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 = (-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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1705.3735945667495 (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 : 1.81 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (67.0%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1597.666721126235 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 6.930e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1588.2129049899993 (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 : 1.72 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.6%)
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 | 6.691e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1589.6782994717844 (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 : 1.75 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.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 | 6.747e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1528.4555189848018 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1503.7909604745923 (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 : 1.72 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.08 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.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 | 6.635e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1474.9182207138847 (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 : 1.72 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.20 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1425.7696046651292 (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 : 1.75 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.5%)
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 | 6.820e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1379.9406754817458 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1384.4625067337806 (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 : 1.90 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 6.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.8820439946821 (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 : 1.86 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.751e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1348.0394589860916 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.45 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 6.611e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1370.7131169519096 (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 : 1.86 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 350.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1309.2239893471494 (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 : 1.68 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.3%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1311.2587323893376 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1339.4835634123845 (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 : 1.69 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 147.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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.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 | 6.700e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1374.705563333188 (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 : 1.70 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1362.635990723101 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 6.671e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1420.0072525044684 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1433.467780324987 (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 : 1.92 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.637e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1486.634577617245 (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 : 1.93 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 186.52 us (96.6%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.7%)
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 | 7.168e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1411.2859672022162 (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 : 1.88 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 350.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 153.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.6%)
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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1520.6868599686613 (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.22 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 7.432e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1443.784021048849 (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 : 1.91 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1600.2612484897777 (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 : 1.78 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.491e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1773.4120669407048 (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 : 1.75 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.30 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.531e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1833.033480271729 (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 : 1.85 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1836.8201566775908 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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,-5.551115123125783e-17,0)
sum e = 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 | 6.790e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1921.4790537716012 (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 : 1.96 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 481.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.3%)
LB compute : 152.89 us (95.7%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.1%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1936.6593766653805 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 7.460e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1924.1332308070628 (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 : 1.97 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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 = (0,0,0)
sum e = 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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2221.459310546191 (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 : 1.81 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2336.5212926572303 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.531e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2578.00117314906 (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.09 us (1.4%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.80 us (95.4%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (56.3%)
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 | 6.711e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2656.3856833079944 (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.46 us (1.5%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 153.97 us (95.6%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.8%)
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 | 6.965e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2715.125795845139 (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 : 1.70 us (0.8%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 195.72 us (96.8%)
LB move op cnt : 0
LB apply : 1.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (66.7%)
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 | 7.342e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2736.617090062403 (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 : 1.89 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (65.2%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033.391118917598 (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 : 1.76 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 154.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3328.366192987607 (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 : 1.76 us (1.1%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.29 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3511.3431960557587 (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 : 1.66 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3743.0754408101993 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.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 | 6.706e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4150.393246820928 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4450.137345908252 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (60.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 | 6.647e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4811.654824260412 (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 : 1.61 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (66.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 = (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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5016.9383991746945 (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 : 1.81 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.03 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 | 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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5443.1468844909505 (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 : 1.71 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.80 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5669.881482312157 (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 : 1.92 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (53.4%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5818.2091527533 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.40 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6622.20775973415 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.558e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7561.68420240035 (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 : 1.86 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.5%)
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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7937.23175947971 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8450.641286965163 (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 : 1.92 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 193.41 us (96.7%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.8%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8648.647563033881 (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 : 1.75 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.4%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9660.872842675044 (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 : 1.65 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 6.726e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10782.611724522587 (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 : 1.64 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.85 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11619.252661535671 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 6.687e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12644.560264943346 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.694e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13638.75232082263 (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 : 1.96 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 194.03 us (96.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13609.30959236486 (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 : 1.63 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 174.67 us (96.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.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 = (0,0,0)
sum e = 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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15181.663379085887 (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 : 1.74 us (1.1%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.62 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.0%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16516.73957861973 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.0%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17900.16933069396 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.767e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19743.450238278867 (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 : 1.80 us (1.1%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.9%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20584.73450687721 (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 : 1.90 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.92 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19457.224834436733 (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.22 us (1.5%)
patch tree reduce : 721.00 ns (0.5%)
gen split merge : 530.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.07 us (95.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24810.460926233798 (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 : 1.84 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.07 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.531e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27514.896027110433 (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 : 1.89 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.7%)
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 | 6.742e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28656.924404485468 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 6.617e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31358.193863837914 (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 : 1.63 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.31 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (56.8%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31699.45056705076 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33274.1150954107 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.64 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (45.0%)
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 | 6.695e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38173.81429246829 (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 : 1.72 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.67 us (95.6%)
LB move op cnt : 0
LB apply : 1.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 = (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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40886.695723423516 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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,0,0)
sum 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 | 6.621e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44087.45262952028 (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 : 1.69 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 170.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44996.13206364926 (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 : 1.82 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.0%)
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 | 6.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49353.84633965822 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.71 us (96.2%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51063.68584440874 (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 : 1.63 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (69.9%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54358.3472832233 (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 : 1.78 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.34 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (61.5%)
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 | 6.621e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59890.388936137366 (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 : 1.91 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 142.72 us (95.6%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (54.9%)
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 | 6.509e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64431.381190702465 (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 : 1.58 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64412.79776315573 (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 : 1.92 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.43 us (88.7%)
LB move op cnt : 0
LB apply : 14.00 us (8.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (69.1%)
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 | 6.883e-04 | 2.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67761.14446923696 (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 : 1.59 us (1.1%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71752.79581028108 (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 : 1.63 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74548.3593749835 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77526.94601225034 (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 : 1.71 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83392.04057571811 (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 : 1.98 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 6.802e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85951.45480703632 (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 : 1.71 us (1.0%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 6.711e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90476.58748853047 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.70 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.3%)
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 | 6.775e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92811.06327442049 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.953e-04 | 2.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93393.76598432768 (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 : 1.94 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97885.22419302953 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.610e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103876.48925037366 (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 : 1.73 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.1%)
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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104883.6626243355 (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.10 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103354.55146575901 (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 : 1.86 us (1.1%)
patch tree reduce : 430.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107476.35827280665 (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 : 1.89 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.48 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (62.1%)
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 | 6.938e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106637.54761911597 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.94 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111387.73318519561 (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 : 1.82 us (1.1%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.30 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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,-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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105798.85891905166 (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.13 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.39 us (95.8%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 6.923e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109255.77140448242 (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 : 1.79 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 6.542e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115691.38475942615 (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 : 1.86 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 169.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (68.1%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109498.94768336114 (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 : 1.92 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109796.05279248966 (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 : 1.67 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 | 6.706e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110827.92374020725 (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 : 1.71 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.06 us (96.1%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.7%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108076.55652922792 (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 : 1.74 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102107.90226231085 (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 : 1.73 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100455.69878854493 (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 : 1.92 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98295.27788358249 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.5%)
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 | 6.721e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100272.81919739574 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.577e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99512.6752036222 (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 : 1.56 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 175.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90468.22792053962 (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 : 1.73 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.710e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91099.03733101541 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.07 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86652.2435822817 (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 : 1.72 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.3%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78187.82431968614 (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.09 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78007.11294365744 (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 : 1.65 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.5%)
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 | 6.552e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78535.068960107 (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 : 1.99 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (57.9%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71411.26144410188 (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 : 15.87 us (9.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 150.44 us (88.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66029.98429282616 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 6.732e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65275.91168311638 (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 : 1.92 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.6%)
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 | 6.704e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61881.69766161905 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56890.47290217805 (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.24 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.67 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.7%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52530.50588163706 (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 : 1.98 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.7%)
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 | 6.628e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51956.17140985573 (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 : 1.79 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.591e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48903.7559397913 (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 : 1.66 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 173.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.9%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43778.851959353655 (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 : 1.91 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 175.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.1%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40717.33262592468 (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 : 1.66 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.20 us (95.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (52.1%)
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 | 6.681e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39138.52081247966 (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 : 1.82 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 149.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34840.94120312145 (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 : 1.95 us (1.2%)
patch tree reduce : 761.00 ns (0.5%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 154.33 us (95.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32805.73943402233 (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 : 1.94 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.12 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.2%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29257.969257661913 (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 : 1.89 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.0%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29045.973271369032 (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.04 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.95 us (95.7%)
LB move op cnt : 0
LB apply : 1.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (67.6%)
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 | 6.629e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27034.432343957287 (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.15 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 188.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (68.9%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23247.149734976058 (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.16 us (1.2%)
patch tree reduce : 340.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 : 180.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21623.042897716892 (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 : 1.66 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 161.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20859.668399036644 (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 : 1.68 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.728e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19326.082103627898 (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 : 1.70 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.49 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (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 | 6.647e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18024.729861522897 (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 : 1.92 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 165.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15906.761044353667 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.4%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15164.947937383462 (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 : 1.75 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13529.594607505851 (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.04 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 175.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11919.03940007227 (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.08 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 180.83 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.2%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11379.97037936835 (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 : 1.90 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.5%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10876.147968469117 (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 : 1.62 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9765.46936366187 (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 : 1.67 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.75 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9064.378741790553 (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 : 1.87 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.05 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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,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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8223.278834390612 (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 : 1.96 us (0.7%)
patch tree reduce : 370.00 ns (0.1%)
gen split merge : 331.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 289.80 us (97.6%)
LB move op cnt : 0
LB apply : 1.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.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 | 8.189e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6398.124091141105 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 148.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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.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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7152.361188521657 (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.05 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.1%)
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 | 6.660e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6691.07722017891 (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 : 1.87 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.722e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6120.39408380248 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5491.956866042154 (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 : 1.93 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 180.04 us (96.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 | 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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4879.660147091309 (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 : 1.92 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.0%)
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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4498.425758725658 (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 : 1.79 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.29 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4297.507007915187 (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 : 1.90 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4076.4409447053004 (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 : 1.80 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 169.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 = (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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3776.449102544525 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.5%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3541.6760617435493 (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 : 1.90 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 6.750e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3352.6953102791836 (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 : 1.64 us (0.9%)
patch tree reduce : 551.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.0%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033.23159109352 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 6.703e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2953.0937075952615 (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 : 1.61 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 144.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2759.0756437330656 (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 : 1.83 us (1.2%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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 = (-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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579.511223360392 (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 : 1.99 us (1.3%)
patch tree reduce : 550.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.61 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2402.2747904314265 (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 : 1.86 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 561.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301.0638727740684 (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 : 1.63 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.78 us (96.5%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2112.008445549944 (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 : 1.85 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.33 us (87.4%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.705e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2078.5662535492525 (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 : 1.67 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1906.6278731491097 (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 : 1.86 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.6862678896669 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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.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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1775.5136173226572 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.513e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1782.4583499126998 (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 : 1.80 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.31 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.463e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1728.3701132506442 (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 : 1.65 us (1.0%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1611.4861050989277 (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 : 1.65 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.14 us (96.1%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.7%)
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 | 6.790e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1537.2618153970834 (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 : 1.56 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.23 us (96.2%)
LB move op cnt : 0
LB apply : 912.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1455.8346297424985 (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 : 1.77 us (1.1%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.43 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1423.419075211218 (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 : 1.89 us (1.2%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.87 us (95.8%)
LB move op cnt : 0
LB apply : 1.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.9%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1409.0978981174524 (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 : 1.90 us (1.3%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.36 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.512e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1454.8298327824587 (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.25 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 510.00 ns (0.3%)
LB compute : 161.37 us (95.1%)
LB move op cnt : 0
LB apply : 1.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1382.5726725654508 (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 : 1.68 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1343.507804022832 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (65.6%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1334.0927873182068 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (55.5%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1315.4237332774421 (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 : 1.67 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.4%)
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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298.8301693315066 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1327.1016483423084 (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 : 1.70 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.44 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.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 = (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 | 6.459e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1409.0116781318945 (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.00 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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 | 6.550e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1400.2881828701572 (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 : 1.61 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.31 us (96.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 6.885e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.9116127143734 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.7%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1351.70801716288 (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 : 1.82 us (1.2%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.8%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1380.2407057713456 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1396.8446896592582 (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 : 1.72 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1435.792379999999 (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 : 1.93 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.2%)
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 | 6.773e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1518.0787956706367 (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.05 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.561e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1614.4039675556471 (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 : 1.59 us (0.9%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.6%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1583.6057309747712 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (62.3%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1632.5347955486382 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1744.1593164355343 (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 : 1.69 us (1.1%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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.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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1824.4387099179703 (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 : 1.71 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1856.5523612060185 (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 : 1.97 us (1.3%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.528e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2053.9805288187767 (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 : 1.76 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2021.0330811335343 (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 : 1.80 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2135.6126570838724 (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 : 1.85 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2278.0720942774933 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.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 = (-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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2402.1642066025806 (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 : 1.90 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2533.6665975887227 (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 : 1.69 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.6%)
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 | 6.697e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2756.0663073027063 (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 : 1.69 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 6.584e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2976.9337402092606 (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 : 1.91 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3193.478475350454 (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 : 1.61 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.33 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 6.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3354.216450642374 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.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 = (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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3471.3313367364494 (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 : 1.66 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.76 us (96.3%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3617.1778052745126 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (69.6%)
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 | 7.013e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3860.1666296974818 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 = (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 | 6.918e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4190.600888902202 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.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 | 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 | 6.648e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4676.040925783012 (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 : 1.77 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.43 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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,-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 | 6.543e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5098.908363330632 (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 : 1.65 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5266.742969167811 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5674.0095193474535 (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 : 1.60 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.18 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.6%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5978.235833950994 (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 : 1.70 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.9%)
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 | 6.741e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6623.796797245143 (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 : 1.68 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.9%)
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 | 6.577e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7314.289305475523 (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.17 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.83 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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,0,0)
sum e = 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 | 6.589e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7870.678944990579 (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 : 1.94 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 6.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8200.350717611052 (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 : 1.79 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.860e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8797.353146586644 (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 : 1.79 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9315.273712664666 (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 : 1.74 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10354.207171335082 (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 : 1.88 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 177.36 us (96.6%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.5%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10615.821855804154 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 145.76 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 6.727e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12186.499300651385 (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 : 1.73 us (1.1%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13061.737313539672 (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 : 1.87 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.8%)
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 | 6.665e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14340.699123581406 (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 : 1.82 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.27 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15315.753034650199 (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 : 1.67 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.00 us (96.2%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16046.752855231374 (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 : 1.81 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 171.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.4%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16943.3352015868 (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.25 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 153.57 us (95.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18994.284063354986 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 461.00 ns (0.3%)
LB compute : 149.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20195.841722088277 (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 : 1.75 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.9%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21969.135781167184 (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 : 1.79 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 179.00 us (96.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.2%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23471.59482320061 (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.01 us (1.2%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 157.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.5%)
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 | 6.715e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25992.44885683607 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 6.796e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27621.492676891634 (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 : 1.66 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.40 us (96.3%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29158.840361864764 (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.00 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.3%)
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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31282.382647878017 (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 : 1.97 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.693e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34693.661645542874 (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 : 1.93 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.9%)
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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36991.618537031885 (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 : 1.70 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.05 us (96.2%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.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.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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38922.50519610681 (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 : 1.74 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.68 us (96.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40649.58746065718 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43969.372411043325 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.87 us (95.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (56.4%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46528.737307592804 (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.16 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.0%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49302.654322385126 (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.06 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 390.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 178.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52089.81868050814 (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 : 1.96 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.3%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56291.082408148424 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 6.688e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61374.56186014958 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63286.88832712324 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66522.64099528576 (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 : 1.86 us (1.1%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70166.18148906474 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.563e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76951.29181561587 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 6.511e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81250.55415021384 (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 : 1.64 us (0.9%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80083.51303351075 (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.03 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (65.7%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82941.8106642819 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84760.03126180552 (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 : 1.88 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.678e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92992.72026167935 (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 : 1.79 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 175.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 8.475e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75768.7935182901 (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.12 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94308.66935745985 (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 : 1.94 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.55 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (60.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 = (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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99664.27613592985 (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.06 us (1.4%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.55 us (95.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 6.742e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103485.15384381126 (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.04 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101503.02945403884 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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,0,0)
sum e = 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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105317.66582535862 (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 : 1.74 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106601.04340548161 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.85 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106161.25540627076 (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 : 1.85 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 165.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 7.264e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103658.70700273878 (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 : 1.98 us (1.3%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.62 us (95.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.3%)
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 | 7.341e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103123.2631507396 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106428.2995147013 (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.01 us (1.3%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108528.3883116372 (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.01 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.35 us (95.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 6.645e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113495.92492515467 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 6.728e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111198.55890005364 (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 : 1.85 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 7.003e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105617.10601982698 (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 : 1.91 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 165.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.8%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103553.26637040958 (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.06 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.89 us (95.7%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (70.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 = (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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104082.06725758345 (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 : 1.75 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 157.09 us (95.7%)
LB move op cnt : 0
LB apply : 1.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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 = (0,0,0)
sum e = 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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99750.11229400583 (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.08 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96934.42621802112 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (61.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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97111.5283293243 (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.13 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91765.41253302334 (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.08 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87944.77391959511 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87694.5660428324 (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 : 1.70 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 173.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.5%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81163.25358970308 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.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 = (0,0,0)
sum e = 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 | 6.968e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79108.39126632515 (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 : 1.82 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.60 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73057.9772931888 (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 : 1.80 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69980.92964241802 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68117.31925707764 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (61.2%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65938.7978169047 (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 : 1.86 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63967.46556144431 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 | 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 | 6.654e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60388.50043677129 (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 : 1.85 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53167.01122493422 (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 : 1.78 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (56.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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50982.86034167796 (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 : 1.83 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.3%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46801.408571724874 (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 : 1.70 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.3%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44128.49445099889 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.53 us (95.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (61.3%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41939.2090711573 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (66.7%)
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 | 6.913e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39084.27439662036 (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 : 1.70 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.1%)
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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35859.38975095354 (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.03 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 172.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32993.69762007425 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32163.124534271155 (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 : 1.72 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.96 us (96.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28415.648963168234 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.2%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26046.320528942644 (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 : 1.70 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.9%)
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 | 6.890e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24911.106888512935 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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,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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21855.166190275882 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20583.90480369744 (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 : 1.84 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.80 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.820e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19777.947640235714 (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 : 1.88 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.52 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18041.84688174967 (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 : 1.97 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.3%)
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 | 6.839e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16744.18878544788 (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 : 1.90 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.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 = (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 | 6.917e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15242.576106998811 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 6.878e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14109.571728707724 (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 : 1.88 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 142.99 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13078.340903971253 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.85 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11479.456887316965 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10723.072901014018 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.74 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10122.671909146618 (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 : 1.74 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 170.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.2%)
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 | 7.139e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8973.80612656294 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8498.216284277229 (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.04 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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,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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7830.096474920131 (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 : 1.84 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7182.402671969 (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 : 1.70 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.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 = (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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6666.230162801395 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6199.516349464504 (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 : 1.71 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5364.842792431024 (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 : 1.75 us (1.1%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (-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 | 8.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4540.60716784209 (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.08 us (1.4%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 146.27 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4875.285120490125 (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 : 1.78 us (1.2%)
patch tree reduce : 641.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.94 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4543.276385289624 (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.09 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4323.033256300759 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 6.708e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4012.381508075334 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (77.2%)
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 | 7.285e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3437.8263174132862 (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 : 1.79 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3343.2488622577475 (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.30 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 154.47 us (95.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (64.0%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3088.84681274304 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.46 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3015.5155032481143 (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 : 1.94 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.16 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.796e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2810.2819255465183 (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 : 1.74 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 = (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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2591.2333811654726 (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 : 1.98 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 155.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.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 | 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 | 6.806e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2479.442969874155 (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.32 us (1.5%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.06 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.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 = (-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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2359.845096109659 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 = (-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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2172.9650295522415 (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 : 1.96 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.00 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2086.591173806918 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.7%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1994.3341715728845 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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,0,0)
sum e = 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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1773.9652366736245 (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 : 1.88 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.32 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 = (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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1790.0701171566936 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 162.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.8%)
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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1624.1985529868828 (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 : 1.86 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (59.9%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1630.8343134702368 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.27 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.733e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1626.0092788803681 (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.11 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.56 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (56.5%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1587.3616825403699 (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 : 1.69 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.02 us (96.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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,0,0)
sum e = 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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1469.0499851436375 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.8%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1453.4084490239 (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 : 1.71 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1433.7779910962577 (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 : 1.75 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.1427462778586 (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 : 1.95 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 = (-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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1354.093883257142 (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.08 us (1.2%)
patch tree reduce : 591.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 | 6.899e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1341.4541711978911 (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 : 1.90 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1274.1789601852788 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1322.1458137729117 (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.07 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1308.2251245325278 (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.09 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1320.1779865873402 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.86 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.0%)
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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1330.7858705634146 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.92 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 = (-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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1302.172952487149 (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 : 1.83 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.891e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.575240844839 (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 : 1.76 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.28 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.7%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1364.1144317007847 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1384.954721814755 (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.11 us (1.4%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 561.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.33 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.768e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1430.32119451583 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.01 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1465.7955502345276 (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 : 1.74 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1446.5019955518655 (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 : 1.86 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (61.1%)
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 | 6.830e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1529.5927550021047 (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 : 1.89 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1504.9632343218252 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1552.8838352391615 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (47.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1686.6753253904642 (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 : 1.92 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.35 us (95.4%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (-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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1778.6716507584872 (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.15 us (1.4%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.37 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 = (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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1832.8256392710819 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.661e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1971.8501368010432 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2033.383949710484 (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 : 1.66 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.37 us (96.4%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.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 = (-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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2074.686019342623 (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.28 us (1.5%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.12 us (95.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2239.1823808426648 (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 : 1.85 us (1.2%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 146.67 us (95.5%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.9%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2312.6691142305176 (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.01 us (1.3%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.4%)
LB compute : 146.91 us (95.1%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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,0,0)
sum e = 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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2426.534898547975 (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 : 1.89 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2642.510580531739 (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.43 us (1.4%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2749.562961729537 (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.03 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 180.91 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.9%)
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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826.3187481543714 (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.04 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 174.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.4%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3078.2413570615795 (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 : 1.72 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.8%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3246.037509561426 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3585.259522584659 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.05 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3837.1249268259985 (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.46 us (1.7%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.32 us (95.6%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 | 6.993e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4021.383160464448 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4420.069936687662 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4767.5622458181515 (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.02 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 172.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4832.714379181099 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5434.153275741089 (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 : 1.86 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.81 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5768.648896110002 (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 : 1.84 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.0%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6058.797739461683 (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 : 1.67 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6548.795743618934 (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 : 1.92 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7131.879116453687 (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 : 1.80 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.5%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7639.882510945334 (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 : 1.81 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.4%)
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 | 6.636e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8793.185937845084 (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.05 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.04 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.719e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9372.006079126128 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9928.520583389189 (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 : 1.80 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10442.57962398675 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.64 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (57.9%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11400.30970106358 (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 : 1.71 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.08 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (54.8%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12209.39034078486 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12963.733205280507 (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 : 1.81 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.998e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14255.447119627066 (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 : 1.87 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15796.346620362352 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (62.3%)
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 | 6.642e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17497.078564650987 (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 : 2.13 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 164.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18051.799487470482 (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 : 1.92 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19741.938006873777 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.93 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (59.2%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21417.09087600744 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.67 us (96.2%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22861.37446557783 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (0,0,0)
sum e = 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 | 6.977e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24227.039982930593 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25922.90941740536 (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 : 1.78 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.34 us (96.3%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28192.452280819558 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (55.1%)
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 | 6.658e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31536.048736062745 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.5%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33168.23240235938 (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 : 1.93 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 6.916e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34912.86074949422 (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 : 1.88 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (58.4%)
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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38262.28787030436 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39747.23033262843 (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.16 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.38 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.998e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42186.41139919929 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.766e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46530.91254092374 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.2%)
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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49513.698534353745 (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 : 1.85 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.51 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53370.90686422653 (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 : 1.71 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54247.26002228176 (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 : 1.88 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 = (0,0,0)
sum e = 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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56988.21804869424 (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 : 1.88 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (6.1%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60295.478359644425 (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 : 1.69 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.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,-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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63197.71984205086 (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 : 1.77 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.1%)
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 | 6.796e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69306.32630510158 (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 : 1.78 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70042.52378846232 (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.12 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75285.81586956252 (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.10 us (1.4%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.76 us (95.6%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.2%)
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 | 6.705e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80977.62193285848 (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.18 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 151.40 us (95.6%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83673.91085353754 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.3%)
LB compute : 158.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86943.08379803269 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.22 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89687.7408455329 (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 : 1.98 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 350.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.29 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89980.02474846665 (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.16 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 162.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92136.29672172478 (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 : 1.85 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93770.78228958636 (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 : 1.87 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.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 = (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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97380.38367940935 (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 : 1.83 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.6%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105307.88946244745 (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.08 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.66 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.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 = (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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108348.75218875671 (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 : 1.81 us (0.8%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 208.98 us (96.9%)
LB move op cnt : 0
LB apply : 1.38 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (71.0%)
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 | 7.346e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99932.87338234276 (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 : 1.91 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 203.85 us (97.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.4%)
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 | 7.275e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102287.49279442635 (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 : 1.73 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (65.5%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105763.43710555085 (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 : 1.67 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107226.59535535744 (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.12 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110099.47341813834 (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 : 1.75 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 144.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111706.00050811654 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.26 us (95.7%)
LB move op cnt : 0
LB apply : 1.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.4%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110888.6686975944 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.0%)
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 | 6.774e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111157.05120898082 (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 : 1.79 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108590.3850313678 (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 : 1.84 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104602.38042980524 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104313.19030836687 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103196.28534571936 (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 : 1.70 us (1.0%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.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 = (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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99240.88278458315 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (50.9%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97017.29247517916 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 = (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 | 6.682e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98054.24091094284 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92527.55355168006 (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 : 1.88 us (1.2%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.705e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91206.36208622299 (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 : 1.92 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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.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 | 6.981e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84242.23477178725 (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.01 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
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 = (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 | 8.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68223.1911069281 (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 : 1.87 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.19 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77413.94372470013 (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 : 1.98 us (1.3%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 531.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.78 us (95.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74140.51294753922 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69188.48396487084 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67366.75730099788 (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 : 1.78 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.2%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62450.56749902649 (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.11 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.44 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 6.655e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62202.816917532 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.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 = (-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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56349.51784757325 (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 : 1.95 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.60 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52848.190510214416 (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 : 1.76 us (1.0%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.3%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48484.82278946025 (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.08 us (1.3%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.4%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45740.598981091374 (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 : 1.80 us (1.0%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 178.12 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41420.75802028348 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40144.47770181289 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36234.97515879428 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (74.2%)
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 | 6.860e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35300.677064600764 (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 : 1.80 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.3%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32034.679545617957 (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.48 us (1.6%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 148.52 us (94.7%)
LB move op cnt : 0
LB apply : 1.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (51.9%)
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 | 6.723e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30991.74872495442 (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 : 1.91 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 169.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27714.21717059923 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25869.104272308334 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.6%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23481.913310771462 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22110.30360335398 (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 : 1.81 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.5%)
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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20666.067957068073 (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 : 1.78 us (1.2%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.2%)
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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18991.478640248006 (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.09 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17437.68984338312 (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.02 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 = (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 | 6.876e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15964.332276218342 (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 : 1.87 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.61 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14644.15207563654 (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 : 1.68 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.45 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13406.953017541588 (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 : 17.88 us (3.8%)
patch tree reduce : 1.05 us (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 432.21 us (92.6%)
LB move op cnt : 0
LB apply : 9.84 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.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,-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 | 1.902e-03 | 1.5% | 0.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 : 2.48 us (0.9%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.2%)
LB compute : 282.79 us (97.0%)
LB move op cnt : 0
LB apply : 2.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (71.8%)
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.018e-03 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.897962489170562 (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 : 2.36 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 197.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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,-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 | 9.392e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 327.9654345201059 (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.31 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 217.52 us (96.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 8.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 592.337253399853 (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 : 2.00 us (1.0%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 251.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 190.58 us (97.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (67.7%)
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 | 8.387e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 764.705866508866 (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.36 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 176.79 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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 = (-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 | 9.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 794.7039124880246 (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 : 2.27 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 196.43 us (96.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.5%)
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 | 8.408e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 949.3196183456372 (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.27 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 168.78 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.9%)
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 | 7.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1095.1430048822567 (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 : 1.97 us (1.0%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 250.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.1%)
LB compute : 183.76 us (96.7%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.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 | 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 | 8.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1094.9292108385828 (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.16 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 166.65 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.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,0,0)
sum e = 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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1303.9390410790527 (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.03 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1362.311291524851 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1389.4409899773543 (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.10 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.85 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1508.0551485397145 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1507.3995357946487 (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.09 us (1.1%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 183.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.2%)
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 | 7.452e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1502.336188504089 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.43 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (62.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 = (-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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1649.9846223944535 (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.11 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.154e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1716.7253823622495 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 153.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1861.4807129878018 (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.00 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 171.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (-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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1948.1315289911402 (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 : 1.96 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2124.1629588511773 (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 : 1.97 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 170.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.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 = (0,0,0)
sum e = 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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2139.3244871459956 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.6%)
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 | 7.185e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2267.1053073772505 (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 : 2.26 us (1.4%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 851.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 151.78 us (94.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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.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 | 6.923e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2509.940021898102 (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 : 1.92 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 150.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.4%)
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 | 7.244e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2564.846316836564 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 152.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.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,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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826.6009554046977 (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 : 1.96 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 178.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.335e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2915.5988601858635 (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 : 1.99 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3183.412069920865 (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.01 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 169.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.9%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3473.608751426595 (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.17 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 203.68 us (96.7%)
LB move op cnt : 0
LB apply : 1.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.1%)
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 | 7.496e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3574.939479905647 (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.09 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 165.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4121.345111898615 (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.10 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 192.52 us (96.7%)
LB move op cnt : 0
LB apply : 1.24 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 7.464e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4207.742639386994 (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.05 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 206.40 us (96.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.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 = (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 | 7.516e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4532.529572120764 (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 : 1.95 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 182.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (65.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 = (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 | 7.461e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4958.692563398419 (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 : 1.92 us (0.9%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 205.78 us (96.9%)
LB move op cnt : 0
LB apply : 1.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.5%)
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 | 7.502e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5361.5098286026105 (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.30 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 209.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5530.20172252607 (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 : 1.82 us (1.0%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 177.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.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 = (0,0,0)
sum e = 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 | 7.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6079.519616551831 (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 : 1.97 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 181.43 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.460e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6965.3782272878525 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 157.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.4%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8150.050157963938 (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 : 1.72 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 185.32 us (96.7%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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.159e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5334.9490931701785 (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.16 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 150.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (52.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 | 6.903e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9777.19306896153 (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.01 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 160.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10687.160763059814 (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 : 1.92 us (1.1%)
patch tree reduce : 711.00 ns (0.4%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 173.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.9%)
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 | 7.434e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10822.877989140374 (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 : 1.94 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 193.90 us (96.8%)
LB move op cnt : 0
LB apply : 1.23 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (63.9%)
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 | 8.390e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10471.100181322567 (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 : 1.95 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (64.0%)
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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13314.722595171519 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.7%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14554.089243006598 (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 : 2.05 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 180.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.575e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15083.193006316149 (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.42 us (1.4%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 170.13 us (95.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.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 | 7.235e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17226.10684923679 (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 : 1.87 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 = (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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19100.11646865602 (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 : 1.87 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.2%)
LB compute : 185.91 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 | 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 | 7.461e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19840.02299148809 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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 | 8.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19816.886608922036 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 430.00 ns (0.3%)
LB compute : 145.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.9%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24395.54901496064 (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.00 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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,-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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27350.573822635055 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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,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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30551.528755867974 (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.04 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 187.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30839.780074674112 (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.04 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 177.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.446e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32570.734274384784 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37864.677634714164 (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 : 1.97 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 183.48 us (96.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (62.8%)
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 | 7.647e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36980.83326541071 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.69 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (59.7%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42005.820315211844 (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 : 1.92 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 166.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45556.41900694526 (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.14 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 162.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 7.331e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47901.965289341904 (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 : 1.97 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.85 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.9%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54627.1733633057 (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 : 1.92 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 194.33 us (96.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (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 | 7.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51730.473197171385 (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 : 1.98 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 165.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.4%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61381.133010849684 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.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,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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63431.416207683564 (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 : 1.99 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 167.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69507.03306270318 (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 : 1.96 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 164.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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,0,0)
sum e = 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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73469.85192646467 (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 : 1.81 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 180.96 us (96.6%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.8%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74865.64986209004 (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.05 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.2%)
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 | 7.524e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74609.06432256344 (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.00 us (0.6%)
patch tree reduce : 351.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.1%)
LB compute : 325.99 us (97.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 8.718e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67343.09320116878 (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.01 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.306e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83759.79677514551 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91046.29789101922 (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 : 1.97 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 154.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.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 = (0,0,0)
sum e = 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 | 7.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83939.37706064638 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96837.90555425294 (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.11 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 = (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 | 6.960e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99892.58101693325 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.77 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103659.94539090077 (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 : 1.92 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 500.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104977.28854728551 (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 : 1.97 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105384.14327491006 (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.10 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 178.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.402e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99945.8180926699 (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.37 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 176.95 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105616.20800656208 (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 : 1.99 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 169.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101992.28055339698 (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.13 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 152.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 7.269e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101800.88415759348 (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.04 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 148.37 us (95.4%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101497.21633818609 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.18 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.0%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102804.32874807391 (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 : 1.90 us (1.0%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 175.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 7.627e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93196.06051538124 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 151.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96460.40448819048 (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 : 1.97 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.3%)
LB compute : 152.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93784.31794529271 (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.00 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.3%)
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 | 6.770e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96882.32142593758 (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 : 1.94 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 172.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88925.26511384945 (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.55 us (1.4%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 174.50 us (95.5%)
LB move op cnt : 0
LB apply : 1.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.9%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85222.23199820245 (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 : 1.96 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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 = (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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84687.11854845997 (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.13 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 167.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.0%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77762.66697426335 (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 : 1.99 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.1%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72097.60195447237 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70754.18125335847 (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.03 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (59.5%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66722.78701631525 (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 : 1.83 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.364e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59964.06191965867 (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.11 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 152.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58228.40217615697 (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 : 1.96 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (72.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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53640.771490649524 (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.06 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49277.42696577281 (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.18 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.0%)
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 | 7.059e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47216.05518380363 (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 : 1.91 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 168.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.5%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43705.5242126724 (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 : 1.98 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.4%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40413.11308299035 (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 : 1.96 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.9%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38349.261588444235 (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 : 1.99 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34669.52132538937 (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.11 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31900.453345808128 (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 : 1.78 us (0.6%)
patch tree reduce : 380.00 ns (0.1%)
gen split merge : 331.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 285.68 us (97.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 8.362e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24229.084358086813 (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.01 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25956.55561160193 (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 : 1.97 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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 = (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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23919.94237424917 (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.34 us (1.5%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.51 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.8%)
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 | 6.946e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22203.974640537617 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 150.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20273.448747407645 (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.12 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18617.860436859657 (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.01 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 170.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16476.65379365356 (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 : 2.05 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (59.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 = (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.123e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9403.33036972992 (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.10 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.6%)
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 | 7.122e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13474.935329924383 (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.12 us (1.3%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.0%)
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 | 6.954e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12533.110634018767 (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 : 1.84 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.4%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11228.681160757573 (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.01 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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.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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10523.81826004908 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.19 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 = (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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9318.948219877839 (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 : 1.88 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 = (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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8416.63948450555 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (55.1%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7880.978476958118 (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 : 1.87 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.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 | 7.606e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6450.842250736401 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6284.8834173474215 (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.12 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.34 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.7%)
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 | 6.727e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6054.52113829077 (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.16 us (1.4%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (56.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 = (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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5485.06911209713 (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.08 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 | 7.187e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4727.0826621882825 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.9%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4448.375709663361 (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 : 3.60 us (2.2%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.73 us (95.0%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.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 = (-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 | 7.589e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3757.220848993457 (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 : 1.98 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 160.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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,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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3689.894069491265 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3412.984494330614 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 143.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3171.0462368989606 (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 : 2.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 6.673e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3083.788665197114 (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.08 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 162.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2693.428951402613 (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 : 1.83 us (1.1%)
patch tree reduce : 12.41 us (7.5%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.19 us (88.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (0,0,0)
sum e = 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 | 7.106e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2496.933396618305 (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 : 1.83 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.03 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2306.0000758332144 (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 : 1.85 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.53 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.0%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2165.164727677971 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2001.8832969285536 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.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 = (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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1952.58926668392 (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.24 us (1.5%)
patch tree reduce : 550.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.85 us (95.3%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (49.4%)
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 | 7.064e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1830.9937376689268 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.35 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.5%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1800.6575511525582 (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 : 1.75 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 147.44 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1697.8810551292838 (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.09 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.705e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1666.6387142603012 (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 : 1.72 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.2%)
LB compute : 168.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1493.627002184155 (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 : 1.86 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1505.3140557332288 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1446.3073261382178 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 156.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.4%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1388.11851158956 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.95 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1374.1983717194978 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.47 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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.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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1334.6151296850685 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 157.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.7522641564374 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 146.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.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 | 7.551e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1207.219080940811 (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.10 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 147.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1319.394312656005 (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 : 1.98 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.9%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1289.9449216002802 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.24 us (95.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1313.6129287171477 (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 : 1.91 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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,-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.035e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 885.6289873002387 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.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 = (-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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.0593496421627 (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.14 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.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,-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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1327.8448613886353 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1370.9005446690066 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,0,0)
sum e = 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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1455.1890660863228 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.88 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1460.8574723579754 (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.01 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 185.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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,0,0)
sum e = 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 | 7.584e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1388.7324863668462 (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 : 1.98 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.4%)
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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1559.0954163694644 (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.01 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1648.934078834288 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.77 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 | 6.748e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1763.6408879032833 (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 : 1.90 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1747.4452056920393 (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.01 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 155.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1852.861238956064 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 156.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1972.2650197002629 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.878e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2135.312077713124 (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 : 1.89 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.1%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2209.0500367690343 (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 : 1.98 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2315.296470258786 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.0%)
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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2561.4890724138018 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.2%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2675.06479267961 (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.19 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.67 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.709e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3031.2106228653993 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 160.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.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 = (-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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3105.25604100027 (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 : 1.96 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 184.34 us (96.5%)
LB move op cnt : 0
LB apply : 1.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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,-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 | 7.321e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3214.307123595669 (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 : 1.97 us (1.3%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.3%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3696.937489153304 (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.00 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3963.6654001633824 (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 : 1.72 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.94 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4343.359028963631 (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 : 1.95 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.31 us (94.6%)
LB move op cnt : 0
LB apply : 2.79 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4568.584596735871 (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 : 1.78 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 = (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 | 6.633e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5263.462394557678 (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.01 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 149.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (56.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 = (-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 | 6.502e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5833.607628693431 (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.09 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 169.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.7%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6043.554721323212 (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.06 us (1.4%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 140.31 us (95.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (73.0%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6446.524669121773 (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 : 1.71 us (1.1%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 156.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7178.725278959353 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.07 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.3%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7807.476891421879 (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.21 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.00 us (95.7%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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,0,0)
sum e = 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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8499.557256471136 (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 : 1.82 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 6.536e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9713.055801571743 (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.04 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10281.63548449401 (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 : 1.83 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.82 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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,0,0)
sum e = 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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11203.171446715394 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12003.105054544352 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 156.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12988.111284323724 (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.26 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 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 | 6.996e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14080.777241510907 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.6%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15393.61305295526 (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 : 1.90 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.497e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18057.676950620407 (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 : 1.90 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.09 us (96.2%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 | 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 | 6.595e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19402.926058460434 (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 : 1.72 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20075.25366393835 (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 : 1.78 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.4%)
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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22528.350256655514 (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 : 1.76 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.6%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23963.882236619473 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 6.933e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25939.29150698263 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.603e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29585.62718046182 (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 : 1.92 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (56.4%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30661.844338712 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33136.78169107765 (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.04 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 6.782e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36636.45066817169 (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 : 1.81 us (0.2%)
patch tree reduce : 310.00 ns (0.0%)
gen split merge : 321.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.0%)
LB compute : 1.09 ms (99.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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.615e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16624.596850615646 (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 : 1.86 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41813.24304026095 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (56.7%)
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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46674.80594826629 (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 : 1.93 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.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 | 6.628e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50514.29290078261 (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 : 1.97 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 6.698e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53590.777439013385 (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.00 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (69.1%)
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 | 7.055e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54418.61271082028 (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.00 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 163.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.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 = (-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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59494.530832085766 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.5%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63714.38892557648 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67326.45794959876 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.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 = (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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69266.7294723144 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.9%)
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 | 7.141e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72396.92166520157 (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 : 1.81 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.9%)
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 | 6.466e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84110.90190195909 (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 : 1.88 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 146.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.631e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86003.72510614849 (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 : 1.90 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.3%)
LB compute : 158.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 = (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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88006.62057725369 (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.08 us (0.6%)
patch tree reduce : 341.00 ns (0.1%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 328.35 us (98.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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.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 | 8.377e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74075.89635501307 (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 : 1.89 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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 = (0,0,0)
sum e = 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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95724.478263909 (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 : 1.68 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.81 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97509.16113375495 (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 : 1.77 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.0%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98002.54197023228 (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 : 1.96 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.53 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100810.58658079381 (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.05 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 166.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.6%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105613.082787935 (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.11 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 150.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104625.41387311237 (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 : 1.98 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 163.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 = (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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107550.05115604588 (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 : 1.68 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 168.76 us (96.4%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.1%)
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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108835.0463009071 (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 : 1.67 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 163.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.5%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106569.73065829244 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 150.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107211.96332359416 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 146.97 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110384.83773576697 (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 : 1.77 us (1.2%)
patch tree reduce : 540.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 142.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109660.15142792604 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 143.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.488e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111416.72612705786 (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 : 1.87 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.15 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 6.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107122.85586090694 (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 : 1.73 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (67.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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100665.38240077438 (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 : 1.76 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.15 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (58.6%)
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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97170.3100001207 (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.03 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.64 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 8.229e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79234.19166902866 (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.04 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 146.11 us (95.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87982.463413846 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (53.9%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85146.33491626548 (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.20 us (1.5%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83948.96757498363 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 147.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (59.9%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81074.75077793052 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75839.00060121623 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71542.91442177215 (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.08 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66581.20377422433 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.5%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63302.45522658272 (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 : 1.90 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.6%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57500.039177033745 (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 : 1.98 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54893.65826889224 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49810.331838116275 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 142.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47991.93904899121 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44380.03440769393 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41242.19574900071 (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 : 1.82 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 6.878e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37405.7477497718 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.69 us (95.7%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.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 = (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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33446.198685237694 (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 : 1.88 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.5%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30448.29627597816 (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.08 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 | 8.406e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23599.648084994657 (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.05 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.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 = (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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25800.498308829654 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.98 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23975.95787579317 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 771.00 ns (55.4%)
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 | 7.005e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21530.37197632179 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20389.336474901676 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 150.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18383.64012740489 (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 : 1.73 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15763.352640161167 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 156.84 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.4%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15059.935135306205 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 148.53 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.8%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12997.11861826325 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (0,0,0)
sum e = 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 | 7.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10914.870854093548 (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 : 1.88 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.288e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10607.185890488136 (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 : 1.92 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.3%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9773.01205372367 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (56.8%)
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 | 6.816e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9355.233766098136 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 148.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8397.565474775605 (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 : 1.89 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.37 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 6.917e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7618.110930180161 (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.32 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.44 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7119.905494643791 (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.87 us (1.7%)
patch tree reduce : 1.46 us (0.9%)
gen split merge : 490.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.6%)
LB compute : 161.48 us (94.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.4%)
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 | 7.026e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6215.613473408237 (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 : 1.81 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 174.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (66.4%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5548.6145047027485 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 141.14 us (95.5%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.8%)
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.045e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3477.3115489501793 (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 : 1.93 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 164.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4834.032418313543 (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 : 1.97 us (1.2%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 163.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4435.1254077734 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.1%)
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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4020.737184399869 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.439e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3448.903520486124 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.83 us (95.7%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (69.8%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3364.6292211313894 (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 : 1.83 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 155.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (58.7%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3112.985359458187 (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.14 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 145.48 us (95.2%)
LB move op cnt : 0
LB apply : 1.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2928.9924514397276 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.08 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2809.010263783251 (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.04 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2548.26800737019 (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.04 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 171.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.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.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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2326.9770250081497 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 = (-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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2130.7521732340724 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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,-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 | 7.007e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2042.1577332595298 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (-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 | 6.878e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1961.2517764044717 (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.09 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (59.7%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1829.1559050419914 (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 : 1.99 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 166.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1530.816787409341 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1651.9592225148438 (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.02 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 165.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 6.984e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1583.2486409429284 (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.07 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1554.0102048654473 (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 : 1.93 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 154.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.5%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1480.6878746781454 (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 : 1.99 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.0%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1432.1503684256547 (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.10 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1403.8763696216415 (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 : 1.80 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1319.4430552093506 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1351.4604151615663 (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 : 1.91 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1340.4920198209327 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1345.192110682537 (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.30 us (1.4%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 155.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.801e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1332.2832569336038 (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 : 1.78 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.18 us (96.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 7.235e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1252.7457792111352 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 172.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.8%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.0643077905486 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.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,-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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1286.8273448219288 (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.05 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 178.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 7.421e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1255.7226007888949 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1347.450620224245 (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 : 1.82 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.199e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1347.5283665840916 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.13 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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,0,0)
sum e = 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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1426.7894208995842 (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 : 2.14 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.55 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.944e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1478.3982356971483 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.773e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1568.689609248005 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1649.0702427543274 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.74 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 = (-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 | 6.978e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1649.0056388951239 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.54 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (67.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,-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 | 6.815e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1766.6239512034292 (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 : 1.77 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1758.825974322721 (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 : 1.93 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.48 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1909.3286800707724 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1976.7471269167004 (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.56 us (1.6%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 151.13 us (95.6%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.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,-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 | 7.046e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2114.886192751522 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.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 = (0,0,0)
sum e = 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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2349.3573598843445 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 153.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (56.2%)
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 | 6.982e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2416.4597065230873 (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.17 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.99 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.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.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 | 7.054e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2554.5237277560605 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2826.4210199584827 (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.19 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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 = (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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2889.9707716609373 (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.11 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.062e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3151.8141685517976 (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 : 1.79 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3391.40473273676 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.58 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3684.72945028892 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4151.119594071261 (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.16 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 144.98 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4523.134090171648 (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.02 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 591.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.3%)
LB compute : 151.11 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4743.454609345211 (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.02 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5147.1244905710855 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.14 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.5%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5621.038817639625 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 | 7.019e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6003.595493026496 (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.07 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6535.949689955247 (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.03 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7127.569239310059 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7649.237354897585 (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 : 1.85 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 540.00 ns (0.3%)
LB compute : 208.58 us (97.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 7.438e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7995.672145928436 (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.04 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.41 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.708e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9675.065119353263 (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 : 1.96 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 162.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10338.770954284568 (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 : 1.96 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11040.370087346988 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.0%)
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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11844.072941567261 (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.02 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 141.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13495.12014645284 (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 : 1.80 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.80 us (96.2%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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 = (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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14356.570992914603 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 156.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15833.68846722825 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17222.7468442939 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (56.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 = (0,0,0)
sum e = 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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19055.985419712186 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.8%)
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 | 6.703e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21272.56506016916 (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 : 1.89 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.39 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21580.77353165724 (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 : 1.92 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24385.724088638923 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 144.54 us (95.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.1%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26097.961020396913 (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 : 1.93 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.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 = (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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29382.30672674209 (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.01 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31489.016869667896 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.8%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34058.6033127155 (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.14 us (0.7%)
patch tree reduce : 350.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 309.55 us (98.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 8.476e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29919.30638282962 (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.06 us (0.1%)
patch tree reduce : 350.00 ns (0.0%)
gen split merge : 321.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.0%)
LB compute : 1.63 ms (99.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 2.190e-03 | 0.1% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12503.016160776668 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (56.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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42832.93646777228 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45578.12143341574 (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 : 1.98 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 156.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48351.52859508715 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.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 = (0,0,0)
sum e = 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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53420.93132789038 (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.10 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.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 = (-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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56904.00957422435 (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 : 1.92 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.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 = (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 | 6.734e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61906.89085760302 (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.05 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.979e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63540.80866334176 (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.00 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 551.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.62 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.9%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66251.45307862769 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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,0,0)
sum e = 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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71748.79238918946 (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.18 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.26 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.0%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75859.27520465938 (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.30 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 150.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.5%)
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 | 6.996e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78848.39134839614 (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.05 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.26 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82045.20448078155 (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 : 1.91 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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.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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83362.51354732345 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91924.32023593957 (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.02 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.40 us (95.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.686e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97347.39497184966 (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.13 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.67 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.731e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99844.50438774675 (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 : 1.90 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 154.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101984.0068558516 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100254.9185501676 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 7.433e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97153.4881367583 (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.16 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.19 us (95.6%)
LB move op cnt : 0
LB apply : 1.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (66.8%)
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 | 7.100e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103315.84568884567 (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 : 1.94 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.0%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106039.8843084382 (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.20 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 156.07 us (95.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.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,0,0)
sum e = 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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107259.46423183504 (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 : 1.93 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112094.80074183564 (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.18 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106733.28589922965 (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 : 1.90 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 168.77 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104804.59063037703 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 163.62 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103150.79491827992 (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 : 1.99 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100915.21090964443 (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.05 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 162.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 7.317e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96777.13296268517 (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.08 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96502.69582915136 (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.12 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.03 us (95.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.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.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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96909.94071119066 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (52.9%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93835.99373661251 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 156.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91757.90830615046 (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 : 1.97 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84988.3278807219 (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 : 1.92 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 177.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80940.81699829173 (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 : 1.76 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.9%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78173.16829559971 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.7%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71769.90247881964 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (0,0,0)
sum e = 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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68553.39866874015 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63253.75261902416 (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.34 us (1.4%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.08 us (95.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (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,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 | 7.193e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59845.6132692249 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57720.30600670466 (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.39 us (1.6%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.72 us (95.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 6.705e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55927.83777004771 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.49 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51854.20466687043 (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 : 1.84 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.22 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47064.844572417824 (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 : 1.78 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.64 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.8%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42388.65165013092 (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 : 1.97 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.4%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39855.87921230631 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.84 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.4%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36010.217847282154 (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 : 1.96 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.01 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.937e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33530.01841168621 (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.06 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30274.04046555971 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 6.671e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29237.114046252766 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 6.634e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26860.399305856565 (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 : 1.88 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 163.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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,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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23694.05096253901 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.80 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.1%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21647.001097327822 (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 : 1.98 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (68.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,0,0)
sum e = 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 | 6.854e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19678.65555227452 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.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,0,0)
sum e = 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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17509.644256361014 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16219.220810863335 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.51 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 6.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15524.067403916733 (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 : 1.90 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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,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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13668.848053707594 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (63.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 | 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 | 6.747e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12384.48873633453 (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 : 1.65 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (56.2%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11131.996820842018 (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.21 us (1.5%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.98 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.0%)
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 | 6.771e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10175.65967866864 (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 : 1.82 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.2%)
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 | 6.782e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9228.083522831917 (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.24 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 140.33 us (95.6%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.9%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8328.688081485565 (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.46 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.1%)
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 | 7.145e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7238.787994478054 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6857.528185128492 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6366.623660159703 (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 : 1.69 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5571.989482501336 (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 : 1.78 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (59.6%)
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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5222.836818800772 (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 : 1.72 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 143.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4702.269752299441 (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 : 1.80 us (1.2%)
patch tree reduce : 560.00 ns (0.4%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.3%)
LB compute : 144.01 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4448.946680933049 (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.05 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.756e-04 | 2.7% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4062.7630707384105 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 148.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3694.3919451838588 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (71.4%)
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 | 6.725e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3458.1851994231565 (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 : 1.76 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 179.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.0%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3048.813999552939 (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.44 us (1.6%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 541.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 145.87 us (95.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.5%)
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 | 6.748e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2947.253380975716 (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 : 1.93 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 165.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2616.4264788056976 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (52.9%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2500.9731223177732 (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 : 1.85 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.639e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2418.005595063774 (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 : 1.75 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 148.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 6.614e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2274.0696062668435 (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 : 1.96 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.81 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2099.028729101853 (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 : 1.98 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1933.27341878512 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.0%)
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 | 6.717e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1879.5365517862592 (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 : 1.76 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.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.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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1726.512971341026 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 145.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1665.8136259396804 (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 : 1.82 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 178.74 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.1%)
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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1508.5510500796584 (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.01 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 156.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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,0,0)
sum e = 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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1518.3828013321813 (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.15 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 6.719e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1516.363439884649 (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 : 1.95 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 152.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.9%)
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 | 6.741e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1466.3835739381695 (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 : 1.68 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 159.31 us (96.3%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.6%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1387.2469322215077 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 390.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1394.2087690712863 (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 : 1.79 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1341.1337588826595 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1353.0944125174997 (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 : 1.77 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (59.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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1357.6968043379288 (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 : 1.93 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 150.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1359.135711526524 (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 : 1.81 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.89 us (96.6%)
LB move op cnt : 0
LB apply : 1.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 9.170e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 988.8129040250162 (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.09 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.16 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (56.9%)
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 | 6.492e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1404.6127206860428 (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 : 1.80 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 173.08 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.9397687515125 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.1273537081122 (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 : 1.88 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (0,0,0)
sum e = 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 | 6.890e-04 | 1.1% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1382.506293756536 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1446.8805848997026 (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 : 1.84 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 6.482e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1545.1399097103035 (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 : 1.78 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.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.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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1544.4669397314221 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 6.774e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1579.7253585927251 (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 : 1.82 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 159.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.7%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1622.3940731161651 (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.11 us (1.3%)
patch tree reduce : 641.00 ns (0.4%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.14 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1687.6502677590397 (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.23 us (1.5%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.23 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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,0,0)
sum e = 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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1726.8478064019587 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1837.2997768266814 (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.02 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (-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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1930.595334301506 (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.00 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (-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 | 6.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2165.744106735094 (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.00 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (54.9%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2177.7303357737246 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2296.0150234928356 (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 : 1.90 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.247235534122 (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 : 1.98 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (-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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2605.042676228191 (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 : 1.73 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 142.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 782.00 ns (53.1%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.523233618582 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057.3175074886276 (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 : 1.73 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 = (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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3322.0806678178706 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.031e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3462.493709667576 (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.22 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.94 us (95.7%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3812.0169585643084 (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.81 us (1.8%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.4%)
LB compute : 148.71 us (94.5%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (51.2%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4086.42603008375 (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 : 1.87 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4493.306124204746 (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 : 1.86 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.1%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4744.110694004852 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (53.5%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5087.10244546564 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5674.243904304072 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6433.400523124631 (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 : 1.78 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.72 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 | 6.471e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7213.932778612788 (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.15 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.673e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7623.964037454618 (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 : 1.94 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.6%)
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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8114.41975587972 (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.01 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 150.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8912.893986119923 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9520.741133395502 (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 : 1.87 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10444.816944626704 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 152.68 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11442.947199646698 (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 : 1.82 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.21 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 | 6.632e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12972.197855574666 (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.16 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.14 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.2%)
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 | 6.546e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14349.891196201688 (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 : 1.94 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 168.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14671.342904570654 (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 : 1.84 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16508.45214183046 (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 : 1.76 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17843.114156424122 (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 : 1.76 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.7%)
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.282e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10393.398746171197 (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.27 us (1.4%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 152.40 us (95.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 8.250e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17595.663665003012 (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.33 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 7.076e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22339.28016732118 (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 : 1.96 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 179.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (69.8%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23528.725465296266 (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 : 2.11 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 163.64 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26092.565084008496 (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 : 2.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (58.0%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28611.430169469015 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 152.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31437.51689669966 (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 : 1.87 us (1.2%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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.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 | 6.947e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34322.69418395486 (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.08 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37415.53635425633 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39720.971774665 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44367.91346224012 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48174.52144436798 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.6%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48112.403554049815 (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 : 1.90 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 169.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52767.528201562665 (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 : 1.94 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.2%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56704.49740348049 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 147.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60110.09875058721 (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 : 1.97 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 175.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.2%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61959.27094391696 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.29 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69227.61042784323 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72075.95561504264 (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.08 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.691e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79390.97770022659 (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.17 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.1%)
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 | 6.986e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79892.96396659562 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 158.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84123.81894408051 (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.18 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 169.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.5%)
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 | 7.400e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82414.01292885638 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92291.67065249925 (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 : 1.89 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.34 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95842.41933879534 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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.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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97652.79993204909 (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.04 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 154.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.254e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96031.7823342774 (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.20 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 163.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101581.52271646791 (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 : 2.01 us (1.2%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105527.66621087627 (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.14 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 158.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 6.970e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105834.008320678 (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.01 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 165.61 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.8%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108346.46403222346 (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.02 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.8%)
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 | 7.436e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100863.0441654058 (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.42 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.946e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108153.49034580108 (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.69 us (1.7%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 154.10 us (95.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.6%)
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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106993.96701407645 (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.23 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 450.00 ns (0.3%)
LB compute : 149.88 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106668.97257795159 (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.03 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103915.9610666238 (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.06 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 164.66 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101501.53392797532 (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 : 1.90 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 143.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106217.89338008556 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 = (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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97986.3315318046 (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.13 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95977.15786099393 (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.05 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 162.07 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92320.94777668062 (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 : 1.95 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.14 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90122.1381428328 (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.14 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 169.89 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84254.57482473433 (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.11 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.5%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80977.27160302822 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 143.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.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.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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79637.5785852007 (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.06 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 156.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.4%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72472.89260554795 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 147.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.9%)
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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70501.84366921069 (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.02 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (47.2%)
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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63280.90561089905 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 146.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (59.1%)
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 | 6.712e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63607.25876953059 (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 : 1.93 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57821.64896645723 (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.54 us (1.6%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 153.71 us (95.7%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.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 = (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 | 7.144e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52009.63675835958 (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.03 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49989.754779367504 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44187.184678556434 (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.10 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.987e-04 | 2.7% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42272.58882726744 (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 : 1.92 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.9%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38208.177131936 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36365.76778974798 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 156.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33199.75543304224 (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 : 1.88 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.3%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29544.398364222576 (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.05 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 158.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27993.107258968204 (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.03 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.98 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.695e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26279.39811714049 (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.00 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 195.94 us (96.8%)
LB move op cnt : 0
LB apply : 1.29 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.1%)
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 | 7.389e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21718.84462748836 (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.05 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 168.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.155e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20434.71086261712 (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.06 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 511.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.79 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19075.201405644733 (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 : 2.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.10 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.0%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16822.788118760396 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16047.25710635686 (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.11 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.70 us (95.8%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14662.160383554015 (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.15 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 197.93 us (96.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.426e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12220.576775716894 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 147.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12094.478254026393 (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.03 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.867e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10895.014167529667 (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 : 1.74 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9966.088139977921 (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.02 us (1.4%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 142.82 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.5%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9013.879056518193 (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 : 1.78 us (0.4%)
patch tree reduce : 351.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.1%)
LB compute : 402.79 us (98.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.1%)
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 | 9.405e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5963.653477284736 (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 : 1.91 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (61.2%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7284.663835863321 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6487.868434898918 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.48 us (95.6%)
LB move op cnt : 0
LB apply : 1.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 | 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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5951.965558642171 (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 : 1.89 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.25 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (53.8%)
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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5535.609366911284 (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.14 us (1.2%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.3%)
LB compute : 172.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,-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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4930.446148731187 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.39 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4698.901786661555 (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.17 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 157.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.6%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4234.595103547995 (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 : 1.95 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 164.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947.702646856268 (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.04 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 168.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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 = (-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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3542.9649134826204 (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 : 2.12 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.53 us (93.7%)
LB move op cnt : 0
LB apply : 2.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3379.0037072682385 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.56 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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,0,0)
sum e = 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 | 6.768e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3136.929475377998 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 158.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2781.739331820232 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (71.9%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2634.7631486176215 (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.00 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.752e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.4762012553647 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.1%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2327.525874551074 (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 : 1.82 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 157.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.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 = (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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.023593680448 (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 : 1.86 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 157.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.6%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1982.110425247611 (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 : 1.92 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 153.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1904.13957944024 (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.08 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 163.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.230e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1732.2282271746092 (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.05 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.008e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1699.2130266278987 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 150.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1618.1155460827476 (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.06 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.73 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.5%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1593.0397923250791 (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 : 1.94 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.708e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1563.359695187757 (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 : 1.95 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 160.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1454.1614682328272 (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.21 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 175.24 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 = (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 | 7.181e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1370.6456317199936 (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 : 1.87 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 170.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (63.6%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.943777783559 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.1%)
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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1373.8560308077883 (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.12 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 151.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.3%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1335.3133080414852 (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 : 1.92 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1306.8345413518955 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.902e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1315.192495410006 (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.21 us (1.5%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.01 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (55.9%)
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 | 6.815e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.401877705922 (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.05 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.5%)
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 | 6.708e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.317295798683 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.29 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1304.7343371620934 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 | 6.933e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.166335959161 (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 : 1.87 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.7%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1354.6658240334268 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 155.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1344.033705061022 (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.10 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 155.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.052e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1387.1688025231892 (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 : 1.96 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1414.230543811028 (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 : 1.96 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1517.3131010040702 (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.09 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1566.4016869548132 (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 : 1.87 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 170.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.7%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1562.0223543892384 (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 : 1.88 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 = (-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 | 7.063e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1653.9570556099577 (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.14 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.30 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.2%)
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 | 6.941e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1763.1157088984558 (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 : 1.88 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (-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 | 7.329e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1755.066957003823 (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.46 us (1.6%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.88 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1928.346652639938 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 151.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2055.364518301713 (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 : 1.96 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2214.4751385665622 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2266.88610336854 (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 : 1.91 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2508.909284169033 (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.06 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.47 us (95.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 | 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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2699.9953911157977 (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 : 1.96 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 450.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.2%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2800.8716596673803 (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.05 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 155.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.1%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3047.181272887432 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.60 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3327.0434367984394 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3495.884786453203 (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.24 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 = (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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3769.8402888255005 (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.00 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.0%)
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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4155.70429572438 (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 : 1.86 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.682e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4663.313802966107 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.3%)
LB compute : 143.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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,0,0)
sum e = 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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4933.266932327829 (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 : 1.99 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 192.60 us (96.7%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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 = (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 | 7.540e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4868.179896940217 (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.07 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 168.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.6%)
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.029e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3878.569531947261 (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.08 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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,-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 | 6.761e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6423.918360458496 (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 : 1.78 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.73 us (88.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6891.726457056866 (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 : 1.97 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7516.4860403761595 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.83 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8061.894351355751 (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 : 1.78 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 158.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8720.637419863257 (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 : 1.97 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.98 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9824.32386508886 (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.08 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10692.203477407546 (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.12 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11810.881259843021 (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 : 1.90 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12824.218932613148 (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 : 1.70 us (0.8%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.1%)
LB compute : 208.57 us (97.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (69.2%)
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 | 7.388e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12890.42671611089 (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 : 1.80 us (1.0%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 175.47 us (96.5%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14564.657454832797 (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 : 1.75 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 156.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.8%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16295.935488255867 (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 : 1.77 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 = (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 | 6.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18183.93016666386 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.689e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20186.956102556487 (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 : 1.81 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (-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 | 6.458e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22784.637532779645 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.89 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23861.937844407283 (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 : 1.85 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 162.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.5%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25342.637572158266 (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 : 1.98 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.5%)
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 | 6.707e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28253.552792596183 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 145.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30399.161915393986 (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 : 1.74 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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,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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33299.1062450645 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34931.952252144285 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.1%)
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 | 7.388e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35347.4549169118 (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.15 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 8.531e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33045.078199408075 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44433.910197209465 (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.11 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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,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 | 6.983e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46780.53084664823 (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.34 us (1.4%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.69 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.7%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51269.64054252618 (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.00 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 168.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.5%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54072.83611386043 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.5%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58421.252815315376 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61539.86696908013 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65959.46914650596 (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.17 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68561.1211818646 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.695e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76036.96886046679 (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 : 1.88 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.28 us (95.6%)
LB move op cnt : 0
LB apply : 1.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75232.21364300697 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79835.94742223668 (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 : 1.86 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 163.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85976.80529508716 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.51 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (57.4%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89186.46426677698 (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 : 1.78 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.86 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.2%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92308.68094304777 (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.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.04 us (95.6%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94049.24856419106 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99038.24233738804 (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.33 us (1.5%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.5%)
LB compute : 151.85 us (95.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (50.0%)
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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102243.43459723222 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.62 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103648.44900088005 (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 : 1.92 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107273.0737748997 (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 : 1.93 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 158.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.9%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107285.9680278521 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 166.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.8%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105866.65969554971 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106399.30401771991 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107952.8283469052 (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.23 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 9.135e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82225.61411845751 (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.62 us (1.7%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.68 us (95.5%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.3%)
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 | 8.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84959.33192723493 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (67.6%)
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.502e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48989.27741058121 (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 : 1.93 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.17 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.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 = (-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 | 8.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87359.48781998584 (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 : 1.97 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99288.25156288863 (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.27 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.14 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.923e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99665.83866592264 (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.09 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.809e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98313.17040826986 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.2%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93513.22794034438 (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.82 us (1.4%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 192.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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.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 | 7.441e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83588.94408810916 (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.25 us (1.5%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 145.47 us (95.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.9%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85169.93742574565 (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.68 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 168.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (68.6%)
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.174e-03 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48433.4007938595 (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 : 2.42 us (1.5%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.59 us (95.7%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 9.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55023.479173811276 (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.15 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71378.77069031163 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71602.64065175003 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 = (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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66420.77559082491 (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.48 us (1.5%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (69.4%)
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 | 7.056e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60204.90962793668 (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.02 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56818.326511186664 (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 : 1.95 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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 = (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 | 7.140e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51738.268517206416 (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.00 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49309.41640195902 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44522.04816169502 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (54.5%)
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 | 6.876e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42661.84665405713 (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.10 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.24 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.193e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37577.50991517482 (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 : 1.92 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.9%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36361.96880056315 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.24 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 6.845e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33320.77668522905 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 149.10 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.674e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31306.52460086647 (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 : 1.81 us (1.1%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 157.33 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27950.326404736552 (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 : 1.89 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.9%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24876.107690499644 (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 : 1.81 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 151.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (66.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 | 6.933e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22951.003062736952 (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 : 1.87 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21087.209894905256 (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.11 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19046.233932114967 (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.20 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (61.3%)
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 | 9.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12987.720086064544 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15447.843685127447 (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 : 1.89 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 160.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14194.952306907066 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13175.809238687718 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.82 us (95.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 = (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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11978.74151658507 (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 : 1.87 us (1.1%)
patch tree reduce : 821.00 ns (0.5%)
gen split merge : 471.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.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 = (-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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10878.77538391253 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 430.00 ns (0.3%)
LB compute : 144.54 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (-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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9717.55106965231 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.55 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8695.212560008385 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7892.401261984382 (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.10 us (1.4%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7268.044618452908 (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.17 us (1.4%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.74 us (95.6%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (59.9%)
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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6807.756859040227 (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.58 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 168.63 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.9%)
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 | 7.077e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5922.274924058359 (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.41 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 6.862e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5571.5945058052785 (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.16 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 6.988e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4997.545234051726 (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 : 1.91 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4587.807338459738 (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 : 1.97 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 147.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (57.9%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4263.896215381634 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.96 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (59.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 = (0,0,0)
sum 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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3878.553938547508 (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 : 1.95 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (-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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3522.0300814830694 (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.05 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3266.923566393907 (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.14 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.627e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3178.6939562242237 (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 : 2.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.22 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2889.6333076598125 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.9%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2610.1421301271535 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.57 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2457.6806125208846 (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 : 1.81 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.80 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 = (-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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2264.3189951685804 (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.00 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2113.546756854889 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 150.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 = (-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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1937.8799360424457 (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 : 1.84 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1837.750271309233 (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 : 1.96 us (1.3%)
patch tree reduce : 531.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.30 us (95.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.716e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1854.724598988964 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (59.7%)
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 | 6.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1760.915383127895 (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 : 1.89 us (1.1%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.26 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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 = (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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1575.4573379935234 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 155.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1542.0574917378417 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.01 us (95.9%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (59.6%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1530.5544884193562 (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 : 1.87 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 156.60 us (96.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1450.802473601361 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.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 = (-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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1418.1084923378141 (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.05 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1366.402644001252 (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 : 1.97 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 152.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1383.6864889991573 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 | 6.662e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1386.2405589216798 (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.04 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1300.2697848444116 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.92 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 6.869e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1320.5669250897838 (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 : 1.88 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 | 6.879e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1315.8477734583676 (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.04 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 571.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.69 us (95.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.1%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1310.8855921211452 (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 : 1.85 us (1.1%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.2703692426428 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1287.445318860079 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 150.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (57.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,-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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1346.6234360917385 (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.11 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.46 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.674e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1434.359415151695 (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.05 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (56.3%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1442.4104536621871 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1480.997929942275 (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 : 1.81 us (1.1%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 155.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.6%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1499.022990064426 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 159.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1539.4429318305806 (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 : 1.83 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.0%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1619.2780333343972 (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 : 2.09 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.57 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1680.3514794149353 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,0,0)
sum e = 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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1755.283717847162 (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.06 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 145.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (58.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 = (-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 | 6.716e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1925.2443080560379 (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 : 1.87 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 156.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2007.7598869619464 (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.51 us (1.6%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 146.85 us (95.3%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (45.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 = (-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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.3771867536543 (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 : 1.82 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 161.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.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 = (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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2233.8104154246053 (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 : 1.86 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.75 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.5%)
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 | 6.964e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2338.809312762641 (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.04 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (57.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 = (-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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.609632249349 (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 : 1.78 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 145.16 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2735.070528051505 (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 : 1.88 us (1.3%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.47 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2862.1543740092275 (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 : 1.96 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 157.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (-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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3103.445011391977 (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.07 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 6.686e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3442.5591245915284 (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.14 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.884e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3605.3272433413667 (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 : 1.99 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3913.8268052394255 (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 : 1.98 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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 = (-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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4202.247335312689 (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 : 1.89 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4413.442025073119 (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 : 1.96 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 167.38 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4827.456997577619 (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.03 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 166.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5180.55511440143 (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.05 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.65 us (95.9%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5708.981353944289 (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.09 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (-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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6323.023921483203 (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.12 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 152.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (49.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.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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6960.061700824274 (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 : 1.87 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 163.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.3%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7526.721435343117 (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.12 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7968.403332247607 (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 : 2.06 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.44 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.4%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8814.153566312725 (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.19 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 6.928e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9757.347015294083 (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 : 1.93 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10630.383865776237 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.59 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.1%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11523.242163646297 (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 : 1.85 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12324.368110421603 (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 : 1.81 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.69 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 6.664e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14426.201729509075 (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 : 1.99 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.47 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.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,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 | 6.675e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15725.77727510091 (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 : 1.86 us (1.1%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (68.1%)
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 | 6.942e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16504.30235811907 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.15 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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,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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17977.63508954212 (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 : 1.84 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 164.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18948.316289861355 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20875.631885275816 (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 : 2.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23213.426813048205 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 = (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 | 6.683e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26328.691529567714 (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.26 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.0%)
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 | 7.336e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26068.0814629801 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.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 | 6.788e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30587.043444082894 (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 : 1.86 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 169.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (62.6%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32258.986983292492 (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.00 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 159.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.0%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35194.29079282311 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.54 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38166.53701405607 (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.08 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 141.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (55.9%)
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 | 6.854e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41496.53028800505 (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 : 1.87 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.1%)
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 | 6.894e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44444.85194743064 (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 : 1.87 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45822.62456938765 (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 : 1.98 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.4%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50563.04095711952 (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.09 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 175.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (0,0,0)
sum e = 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 | 7.426e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50977.91239098011 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.34 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.3%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60177.46173530451 (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 : 1.95 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 158.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.7%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62863.7863849309 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 152.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65380.22680287861 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 330.00 ns (0.2%)
LB compute : 144.76 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69710.52384090933 (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.08 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 149.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72945.73304951246 (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 : 1.90 us (1.2%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 481.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 460.00 ns (0.3%)
LB compute : 149.61 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
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.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 | 7.574e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71326.75259727624 (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.07 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.173e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79076.25758809273 (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.06 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86496.19152119961 (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 : 1.94 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 167.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (69.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 | 7.003e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88386.4878488588 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (54.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,-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 | 6.741e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95411.00632213072 (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.51 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.3%)
LB compute : 162.10 us (95.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.2%)
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 | 7.057e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94330.0759119525 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 146.23 us (95.8%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.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,-5.551115123125783e-17,0)
sum e = 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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101196.86603706537 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (52.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,0,0)
sum e = 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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102238.66338333738 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.76 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (0,0,0)
sum e = 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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105748.26891614856 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 145.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.7%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104752.26711203685 (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.00 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107532.1777301008 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 | 6.704e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112132.05888466486 (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.04 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.716e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112514.64465510174 (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.06 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 174.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.4%)
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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104887.15858344341 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112517.1520536756 (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 : 1.73 us (1.1%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 145.38 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.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 = (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 | 6.733e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110964.6270425859 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.93 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 | 6.721e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109755.89041727643 (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 : 1.78 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.41 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104697.33493092176 (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.03 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103724.0081614162 (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.03 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (0,0,0)
sum e = 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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102550.25054040631 (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 : 1.73 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 171.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 6.772e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98946.83757055899 (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 : 1.93 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.4%)
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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96035.0643943656 (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 : 1.68 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 164.12 us (96.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87795.23808295041 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85990.03630527262 (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.01 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 155.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82112.99113055506 (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 : 1.98 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
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 | 6.682e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80784.95610683988 (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.11 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.90 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (58.7%)
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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75976.26569277266 (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 : 1.70 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 176.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.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.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 | 6.933e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69493.57354927824 (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 : 1.89 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65231.78556305231 (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 : 1.80 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.8%)
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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62925.03945783962 (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 : 1.85 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.72 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.752e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58648.62243072861 (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 : 1.90 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.669e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55275.65987249427 (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 : 1.78 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.8%)
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 | 6.510e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52555.11027008139 (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.04 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46839.2635618358 (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.01 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 161.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.7%)
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 | 6.783e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43122.4176173287 (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 : 1.88 us (1.1%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.0%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38382.9037499092 (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 : 1.68 us (1.0%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35102.101055283674 (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 : 1.85 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33163.745257671006 (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 : 1.94 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.790e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30661.853907494955 (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.03 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 140.80 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (0,0,0)
sum e = 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 | 6.683e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28487.46277283968 (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 : 1.83 us (1.2%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (53.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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25771.731080473488 (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 : 1.93 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.716e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23598.944175349276 (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 : 1.89 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 6.675e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21629.538240984366 (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 : 1.74 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 170.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (64.1%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18709.151786575752 (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 : 1.86 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.8%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17461.514954772738 (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 : 1.91 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.7%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15389.935247826963 (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.08 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 6.817e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14461.242399809062 (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 : 1.88 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.558e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13649.543962756037 (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.36 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.66 us (95.5%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.615e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12285.561341703675 (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.19 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 621.00 ns (0.4%)
LB compute : 159.06 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.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 = (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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11010.711460877332 (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 : 1.72 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 143.35 us (95.9%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (59.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 | 6.809e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9839.988515169583 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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.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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8657.769642089304 (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.09 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8101.809420370142 (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 : 1.94 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 158.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7239.052343219093 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6641.243384954067 (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 : 1.90 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 6.632e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6291.567367051107 (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 : 1.71 us (1.0%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.3%)
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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5694.150587919715 (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 : 1.94 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.1%)
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 | 6.703e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5186.8578570218815 (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 : 1.91 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4641.5420907377165 (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 : 1.88 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 6.697e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4352.664394587863 (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 : 1.85 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3946.9260535964395 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.546e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3761.252600154114 (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.11 us (1.2%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 170.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3208.147624898328 (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.07 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 167.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (62.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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3020.522287633539 (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 : 1.74 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 165.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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 = (-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 | 6.802e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2858.169544926656 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2658.888071333804 (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 : 1.80 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 163.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2385.9984344007935 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.774e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2322.335951475534 (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.02 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 351.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2187.383374057768 (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.28 us (1.5%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.83 us (95.6%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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.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 | 6.713e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2067.882656157774 (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 : 1.89 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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,0,0)
sum e = 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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1943.2260204419272 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 | 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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1801.7703478760955 (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.00 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (64.0%)
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 | 7.061e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1673.9082636546443 (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 : 2.01 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 151.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1639.5253248078031 (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 : 1.75 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1590.9507876947791 (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 : 1.89 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.731e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1549.282069464922 (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.13 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.10 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.7%)
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 | 6.586e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1531.357270552216 (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 : 1.97 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.31 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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,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 | 6.677e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1467.461402537362 (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 : 1.73 us (1.0%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 172.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.7%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1403.1030222046982 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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,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 | 6.802e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1377.692479299788 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (59.3%)
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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1355.4914877252015 (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 : 1.88 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 142.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 6.635e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1375.491537994795 (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 : 1.75 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.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 = (0,0,0)
sum e = 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 | 6.479e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1399.578306066594 (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.02 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.36 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.963e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1299.8240607968003 (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.03 us (1.3%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.561e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1382.9042240742353 (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.07 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 6.860e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1332.1174982155742 (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 : 1.74 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.5%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1337.9740701976789 (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 : 1.97 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1399.0859489792915 (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 : 1.81 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 7.186e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1333.5604020225337 (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 : 1.85 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.04 us (95.9%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.592e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1489.4378218176196 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1508.638401243481 (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.14 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 153.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.8%)
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 | 6.834e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1526.7087745545164 (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 : 1.89 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 158.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1557.7285973211049 (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 : 1.90 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.39 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (58.1%)
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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1531.9472119963782 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1666.1787811047893 (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 : 2.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1815.9912861562798 (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.18 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.86 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.4%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1928.868951946432 (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.04 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.46 us (95.5%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.4%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1988.748831167983 (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.16 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.62 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.562e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2205.053487032415 (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 : 1.90 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 6.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2285.867864423766 (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 : 1.71 us (1.0%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 162.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 | 6.824e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2394.528125519963 (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.05 us (0.5%)
patch tree reduce : 340.00 ns (0.1%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.1%)
LB compute : 404.39 us (98.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.5%)
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 | 9.174e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1900.1800639812288 (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.45 us (1.6%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.17 us (95.4%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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,0,0)
sum e = 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 | 6.840e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2725.6213891124667 (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 : 1.90 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 490.00 ns (0.3%)
LB compute : 146.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2897.906758179797 (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 : 1.98 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 157.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3111.2943307365563 (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 : 1.65 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.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 = (0,0,0)
sum 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 | 6.686e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3455.994930674832 (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.25 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 14.90 us (7.5%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 177.03 us (89.1%)
LB move op cnt : 0
LB apply : 1.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 8.331e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2990.8567446976663 (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.04 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3886.65368181908 (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 : 1.79 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4248.9146556795295 (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.01 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 167.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4557.266614934725 (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 : 1.96 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.75 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4975.70384722466 (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 : 1.78 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (64.7%)
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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5386.645232425052 (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 : 1.75 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.0%)
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 | 6.906e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5855.8143577531555 (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 : 1.67 us (1.1%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6546.724395811309 (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 : 1.78 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.22 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6802.848771292833 (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.02 us (1.3%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.1%)
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 | 6.681e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7824.390917613244 (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.06 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (42.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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8470.249150836915 (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.01 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 360.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 146.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (55.9%)
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 | 6.551e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9499.160700618899 (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 : 1.74 us (1.0%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 159.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.0%)
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 | 6.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10073.068641651522 (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 : 1.96 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.6%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10272.234361368786 (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 : 1.81 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 160.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.1%)
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 | 7.299e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11100.100998279711 (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.07 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 156.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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.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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12847.290164978647 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.21 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14235.019283915028 (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 : 1.75 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 148.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15456.729666160581 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 150.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (55.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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17042.21649322341 (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 : 1.78 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.9%)
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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18308.172392188368 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19317.626813266757 (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 : 1.87 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.7%)
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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21627.318409117834 (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 : 2.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (59.2%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23262.257359363088 (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.04 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25881.205065624905 (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.07 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.6%)
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 | 6.829e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28150.882617617182 (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.07 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (57.9%)
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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30730.09291559308 (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.20 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.15 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33102.257590126785 (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.25 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 148.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36742.331708665544 (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 : 1.93 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 167.52 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.9%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38515.69631643686 (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 : 1.72 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.01 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (67.3%)
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 | 6.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42383.92566526426 (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.04 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.94 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44141.36746045031 (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.09 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 155.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45477.90914053422 (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 : 1.68 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 168.66 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49710.5397894755 (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 : 1.98 us (1.1%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 169.65 us (95.7%)
LB move op cnt : 0
LB apply : 1.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53949.30718542304 (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.03 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (55.9%)
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 | 6.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59583.293787109294 (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 : 1.94 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.74 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.620e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65413.393982177746 (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 : 1.95 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (62.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,0,0)
sum e = 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 | 6.816e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67506.37207391491 (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 : 1.89 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.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 = (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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69932.34001997429 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74126.29725269543 (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 : 1.94 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.99 us (95.5%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 = (0,0,0)
sum e = 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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78815.69248032718 (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 : 1.85 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 540.00 ns (0.4%)
LB compute : 143.51 us (95.2%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.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,-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 | 6.680e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85300.79583141125 (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 : 1.81 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 146.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 6.558e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90913.15743273219 (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.39 us (1.6%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.04 us (95.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.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.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 | 6.791e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91548.43402350575 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.6%)
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 | 6.672e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96806.90256752477 (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 : 1.92 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 172.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97150.12041603118 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 6.710e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102721.51559768389 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.29 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103811.80438826494 (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 : 1.92 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105376.17758843832 (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.06 us (1.4%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (73.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 | 6.596e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111737.64326096789 (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.13 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (0,0,0)
sum e = 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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110020.76193471548 (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 : 1.94 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108381.91831197591 (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 : 1.88 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (63.2%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108457.27910287939 (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 : 1.94 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 6.756e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112320.63481237914 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 151.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.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 = (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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110074.6195232911 (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 : 1.85 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.3%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110829.92803994098 (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 : 1.76 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 166.98 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95122.67268794835 (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.57 us (1.7%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.73 us (95.5%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.293e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99693.0592043088 (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.23 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 151.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (54.8%)
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 | 6.642e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107100.20805108994 (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 : 1.97 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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,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 | 6.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105493.12653742079 (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.01 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 168.07 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.7%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98078.6217057881 (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.16 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.70 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.942e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93444.3239474671 (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 : 1.73 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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.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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91329.68760081416 (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 : 1.69 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.47 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.5%)
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 | 6.769e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88210.35530109063 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.72 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.742e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84468.89027296388 (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 : 1.80 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.32 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 792.00 ns (55.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 | 6.548e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82612.352049605 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.73 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.4%)
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 | 7.007e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73060.11170401076 (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 : 1.77 us (1.0%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 169.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (71.7%)
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 | 6.931e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69646.7683518044 (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 : 1.96 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 175.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63931.17306887997 (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 : 1.73 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.860e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61929.5577873143 (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 : 1.78 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.860e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57812.19125446586 (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 : 1.73 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.61 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53440.18365646179 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.13 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 6.564e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52200.35575225973 (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 : 2.20 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.35 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.697e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47357.76444565842 (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 : 1.97 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 6.763e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43302.46896538971 (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 : 1.80 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 159.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39000.352858058264 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 6.719e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36912.51827904115 (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 : 1.74 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.97 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.2%)
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 | 6.682e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34050.44451126351 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30752.306670796035 (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 : 1.74 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.11 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28471.776106189835 (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.32 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.29 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.8%)
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 | 6.690e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26002.19358142902 (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 : 1.76 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.4%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23786.091375582535 (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.05 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20551.525386881494 (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 : 1.76 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 145.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 6.753e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19465.281931293124 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 158.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16573.567799386896 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15790.453615314069 (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 : 1.79 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 143.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.519e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15129.405588869655 (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 : 1.88 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12979.980658823853 (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 : 1.76 us (1.1%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 160.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.697e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12138.929532659226 (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 : 1.67 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.50 us (96.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 6.790e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10870.627306016218 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.8%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9843.907768356461 (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 : 1.92 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8812.020012797786 (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.29 us (1.5%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.47 us (95.7%)
LB move op cnt : 0
LB apply : 1.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (71.4%)
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 | 6.937e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7975.401983112128 (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 : 1.97 us (1.3%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.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,-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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7407.798159850282 (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.22 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 146.23 us (95.5%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (52.0%)
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 | 6.645e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6892.036797379008 (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.00 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 152.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.9%)
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 | 6.607e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6316.399789472748 (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 : 1.97 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.95 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5536.68468414815 (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 : 1.85 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (55.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 = (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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5201.062794325908 (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 : 1.92 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 159.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4568.1141923882915 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4286.158208079369 (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 : 1.98 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.716e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3984.9455361883183 (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.27 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 154.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3627.794721760891 (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 : 2.27 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3307.2924003909943 (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 : 1.94 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 176.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3033.0646702265904 (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 : 1.91 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2814.594845300096 (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 : 1.71 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2690.2882682414393 (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 : 1.76 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2498.166702992936 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2284.930304997948 (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 : 1.91 us (1.2%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 146.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (48.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 = (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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2176.9755423781266 (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 : 1.97 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 147.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.592e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2105.4668435677645 (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 : 1.77 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 6.761e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1938.1818208928198 (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 : 1.71 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.55 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (6.1%)
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 | 7.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1584.578774429576 (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.15 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 149.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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,0,0)
sum e = 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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1698.3690416157574 (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 : 1.94 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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.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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1620.994073422736 (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 : 1.90 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 8.140e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1329.8310240053327 (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 : 2.14 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 250.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 251.00 ns (0.2%)
LB compute : 151.03 us (96.4%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 681.00 ns (61.2%)
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 | 6.436e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1619.8209432603778 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 250.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.2%)
LB compute : 149.03 us (96.4%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 741.00 ns (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 = (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 | 7.223e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1396.1046622794447 (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.01 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1403.7168291679495 (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.39 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.26 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.1%)
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 | 7.127e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1341.172314433413 (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.43 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.178e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.2824218323055 (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.11 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.782e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1360.3032844316995 (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 : 1.89 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.65 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.083e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1288.1666117888337 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.18 us (95.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1305.905540835266 (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 : 1.84 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 551.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.77 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1296.994882925041 (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.04 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 152.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1298.3045984448809 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 152.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1294.1318944232628 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 146.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.7%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1349.585918423569 (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.07 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 153.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.8%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1324.9744145179977 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (53.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 = (-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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1401.1525349521435 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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,-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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1402.802455899533 (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.16 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 147.55 us (95.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1433.9121645237503 (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.20 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 173.74 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1466.2396204463873 (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.04 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1575.2021413432415 (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 : 1.81 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.55 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.8%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1626.3882442220502 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.6%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1608.6224420279393 (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.22 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 158.93 us (95.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (69.5%)
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 | 7.041e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1750.5836924523092 (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 : 1.84 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (50.5%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1871.7680944550352 (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.10 us (1.3%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 157.01 us (95.3%)
LB move op cnt : 0
LB apply : 1.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 = (-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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1938.585439244516 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 143.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2097.881683110851 (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.45 us (1.6%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.13 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.862e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2237.8857467683097 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.36 us (96.0%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 = (-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 | 6.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2423.129945553949 (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 : 1.90 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 161.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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 = (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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2531.653811004125 (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 : 1.95 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (65.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 = (-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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2611.876577872557 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2899.4167811653297 (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 : 2.05 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.64 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (55.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 = (-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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3140.803367968102 (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.03 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 171.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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 = (0,0,0)
sum 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 | 7.159e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3228.385153133336 (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 : 1.86 us (1.2%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.60 us (96.2%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3526.4264043271205 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3995.860646325541 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 152.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4211.618319410215 (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 : 18.39 us (9.8%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.15 us (87.8%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.9%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4432.639908929633 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (65.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 | 7.009e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4886.345765294389 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.2%)
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 | 7.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4778.835670227824 (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.08 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 251.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.3%)
LB compute : 163.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (75.1%)
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 | 6.992e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5785.866274875913 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,-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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6188.931819166349 (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 : 1.75 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7036.251457810331 (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 : 1.98 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 163.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7531.543609854273 (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 : 1.96 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.749e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8452.924830482461 (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.09 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9480.536623361751 (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 : 1.69 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.5%)
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 | 6.696e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10150.436355577947 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.1%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10759.688597971612 (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.02 us (1.4%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.56 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11964.006559309208 (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 : 1.75 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 | 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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12704.654775424122 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 144.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14449.841256524423 (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.00 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.624e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15939.404512568226 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16870.20601570831 (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 : 1.96 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.86 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (0,0,0)
sum e = 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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18148.121917153476 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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,0,0)
sum e = 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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19893.607796892396 (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 : 1.75 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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,-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 | 6.698e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22309.83323006402 (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 : 1.74 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.2%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23312.896009284694 (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 : 1.74 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.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 | 6.926e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25563.380745052807 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.17 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27314.16367151919 (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 : 1.92 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 6.541e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31940.916777646187 (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 : 1.89 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (59.3%)
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 | 6.707e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33774.37414182549 (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 : 1.72 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.75 us (96.0%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (58.7%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34954.01186700015 (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.17 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.8%)
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 | 6.786e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39079.33557693031 (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 : 1.71 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (55.0%)
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 | 6.661e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42972.75174442204 (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.02 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43827.09290745631 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 145.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (59.7%)
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 | 6.534e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50757.727797367406 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.68 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53354.5107010446 (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.19 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 159.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.9%)
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 | 6.704e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56844.38716012211 (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 : 1.75 us (1.2%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.54 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.4%)
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 | 6.643e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61281.536612502416 (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 : 1.76 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.81 us (96.6%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60697.56704708824 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.81 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.667e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69145.81846950746 (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 : 1.93 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 143.09 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (54.8%)
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 | 6.467e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75549.32979437073 (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 : 1.97 us (1.3%)
patch tree reduce : 541.00 ns (0.4%)
gen split merge : 470.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 142.21 us (95.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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.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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75761.02549696613 (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.08 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 6.621e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82136.25334959605 (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 : 1.84 us (1.1%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82691.21410600489 (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.04 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 152.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.6%)
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 | 6.857e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87151.71007054501 (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.25 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 157.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87465.84873116965 (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 : 1.99 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (72.2%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94769.78964416143 (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 : 1.85 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 145.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97061.0276305391 (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 : 1.87 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 6.560e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105358.56706261706 (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.09 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 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 | 6.594e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107638.17955728178 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 160.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106156.89636980751 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.8%)
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 | 6.711e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110162.04743070662 (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 : 1.77 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.06 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.770e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110749.69508871937 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 6.714e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112756.94859609925 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112918.72726411912 (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.10 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113071.45593001074 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.47 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.752e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112362.37042845532 (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 : 1.81 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 159.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112279.18823654667 (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 : 1.94 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.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,-5.551115123125783e-17,0)
sum e = 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 | 6.702e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110830.99487749852 (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 : 1.91 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99852.31616153283 (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 : 1.91 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101367.14177927554 (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.54 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 201.29 us (96.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.728e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90028.38216137991 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 148.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95835.77577334824 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92180.1581254296 (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 : 1.92 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.675e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93843.86750616132 (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.02 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.539e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91731.53894046046 (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 : 1.67 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 160.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (59.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,0,0)
sum e = 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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85138.69393310559 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.14 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.6%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76882.68613956965 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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,0,0)
sum e = 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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74050.84206360429 (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.15 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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,0,0)
sum e = 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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67535.51826134048 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.1%)
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 | 6.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67600.01112851639 (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 : 1.83 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 6.694e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63776.660434123885 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.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 | 6.628e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60142.65066067038 (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.07 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55383.73398660872 (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 : 1.69 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51245.35222865363 (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 : 1.88 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (64.3%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45008.25192833372 (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 : 1.82 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (56.6%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42846.770291296045 (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 : 1.81 us (1.1%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.6%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38368.932537422945 (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 : 1.90 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36666.03398216832 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 6.677e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34261.4197268081 (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.16 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 155.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 6.665e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31430.67767777606 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27509.910362566057 (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 : 1.89 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.5%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24720.608541671314 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (43.6%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23352.53226760801 (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 : 1.85 us (1.2%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.70 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.6%)
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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20116.219490799558 (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 : 1.94 us (1.3%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.751e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19575.141069729903 (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.02 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 450.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.18 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17880.167650621643 (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.16 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.46 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 6.642e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16437.430582599332 (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.16 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.554e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15127.906371418707 (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.12 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 164.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12879.171657443334 (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.26 us (1.2%)
patch tree reduce : 450.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 173.53 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (71.1%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11697.581062705203 (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 : 1.99 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 147.91 us (95.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10517.836570737041 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.759e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9966.680758808045 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8524.04048363132 (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 : 1.86 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8077.457080855177 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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.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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7474.536994391153 (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 : 1.97 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 = (-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 | 6.559e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7016.654083568868 (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 : 1.99 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 164.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (62.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 = (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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6078.9117249258015 (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.00 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.34 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.3%)
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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5651.227276227006 (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.21 us (1.4%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.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,-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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5131.617790055097 (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 : 1.84 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 160.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 | 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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4411.439200872591 (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 : 1.87 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.10 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4253.5308402353485 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.769e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3970.443698581961 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 6.579e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3757.766808946824 (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 : 1.80 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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 = (0,0,0)
sum e = 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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3381.0164177284155 (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 : 1.90 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3116.473537266139 (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 : 1.94 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2842.3423550733255 (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 : 1.92 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.4%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2630.1202329909443 (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 : 1.91 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 173.26 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2372.6914603668783 (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.06 us (1.4%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.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 = (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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2312.8686700563535 (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.31 us (1.5%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.28 us (95.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.628e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2231.9217455594894 (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.11 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.29 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 6.535e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2129.697072553271 (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 : 1.73 us (0.9%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 182.80 us (96.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1872.0756533879683 (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 : 1.73 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.49 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1813.611530982324 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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,0,0)
sum e = 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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1699.8384042070722 (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.14 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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.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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1673.5529728809593 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (55.2%)
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 | 6.535e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1659.373078627499 (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 : 1.95 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1508.1073330561624 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.4%)
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 | 7.000e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1442.5593286597784 (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.02 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1416.36611413433 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (58.5%)
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 | 6.651e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1438.5351929779038 (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 : 1.75 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 141.45 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.750e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1389.057411307935 (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 : 1.74 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (54.2%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1338.503093884754 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.2%)
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 | 6.685e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1365.235728090152 (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 : 1.97 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (58.1%)
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 | 6.660e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1361.2165569293804 (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 : 1.90 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 169.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1266.3452819954596 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (58.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,-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 | 6.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1341.0555031391232 (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 : 1.77 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (62.1%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1337.5125941993779 (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.10 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 154.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 7.009e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1317.5734624089048 (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 : 1.93 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (53.9%)
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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1380.1000625195093 (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 : 1.76 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1385.0801206526246 (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.32 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (66.3%)
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 | 7.248e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1352.60051404762 (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.15 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 | 6.783e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1486.6137514669776 (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 : 1.95 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.6%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1504.846623964325 (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 : 1.75 us (0.8%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 203.35 us (96.9%)
LB move op cnt : 0
LB apply : 1.40 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1501.8788169435393 (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 : 1.74 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 164.51 us (96.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.8%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1582.368221295727 (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 : 1.86 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1737.0983096007033 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 146.02 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1745.5542233585206 (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.46 us (1.6%)
patch tree reduce : 570.00 ns (0.4%)
gen split merge : 470.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.90 us (95.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 6.976e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1853.27636420236 (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 : 1.87 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.702e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2034.7515781027903 (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.13 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.07 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.614e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2181.723484111436 (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.04 us (1.4%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.24 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 = (0,0,0)
sum e = 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 | 6.654e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301.184542435697 (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 : 1.83 us (1.1%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.63 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 = (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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2393.041876930138 (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.27 us (1.5%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.94 us (95.5%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (61.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 = (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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2532.6239422078215 (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 : 1.77 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 = (-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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2658.822794704179 (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 : 1.78 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.01 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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.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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2874.873569044521 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.61 us (95.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.1%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3147.181805226729 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 155.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 6.621e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3478.0333236312154 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (58.4%)
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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3657.6692570655564 (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 : 1.94 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 162.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.6%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3915.5256869011923 (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 : 1.87 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.81 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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 | 6.727e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4314.498499421843 (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 : 1.97 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.66 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4543.150750782702 (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.06 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 167.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4763.599775335316 (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.15 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5374.878706388418 (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 : 1.78 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5888.356654442333 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.727e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6520.490113732134 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.5%)
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 | 6.658e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7177.14391072574 (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.03 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 159.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7633.347953835352 (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 : 1.96 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 6.688e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8496.334702140557 (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 : 1.76 us (0.9%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.1%)
LB compute : 194.50 us (96.9%)
LB move op cnt : 0
LB apply : 1.25 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (56.8%)
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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8481.423209475579 (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 : 1.80 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9643.093574242055 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10793.150564575026 (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.00 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11778.13937176232 (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.02 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 = (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 | 6.540e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13486.638727109674 (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 : 1.88 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.8%)
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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14255.79307839543 (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 : 1.87 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.30 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14855.058818806003 (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 : 1.96 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.94 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16868.29620266558 (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 : 1.90 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 149.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 = (-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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18164.808822079907 (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 : 1.88 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.24 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19733.543147860903 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21478.38490315043 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.6%)
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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23977.452635512615 (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.29 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.64 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 6.702e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26333.798276638816 (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 : 1.84 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 6.729e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28509.523389305148 (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 : 1.70 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 501.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (58.4%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30402.661124746013 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 142.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.1%)
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 | 6.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33525.076319257925 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35559.012744718326 (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 : 1.83 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (57.8%)
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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38858.916493834775 (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 : 1.88 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 162.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.9%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40995.90920645666 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.0%)
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 | 6.604e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46591.860790392435 (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 : 1.92 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48820.91737806527 (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 : 1.75 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50950.307958089455 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.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,-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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55797.443689950356 (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 : 1.76 us (1.2%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60733.580226798425 (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.04 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.84 us (95.6%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63630.32492037842 (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 : 1.97 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.761e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68107.96133622233 (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 : 1.97 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70172.57479458151 (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.55 us (1.6%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 152.44 us (95.6%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 6.777e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76132.51628381533 (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.18 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 160.54 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (71.4%)
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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79968.63575451785 (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.01 us (1.3%)
patch tree reduce : 520.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 149.06 us (95.5%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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,-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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83344.60868936281 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83891.69563092898 (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.09 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.29 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.803e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91651.16879753665 (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 : 1.74 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 6.692e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96835.86824162175 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.5%)
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 | 6.763e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99205.05468333488 (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.03 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.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,5.551115123125783e-17,0)
sum e = 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 | 6.536e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105875.42970974186 (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 : 1.78 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103251.59366950057 (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.08 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.06 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.1%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105633.42007485908 (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.07 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 159.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.6%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105888.5780080349 (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 : 1.84 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 162.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107135.762584013 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 8.585e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88439.30837164984 (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 : 1.77 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 172.45 us (96.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107324.66835367001 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (-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 | 6.564e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116433.80243081784 (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.11 us (1.4%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 145.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.541e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116438.97302753656 (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 : 1.90 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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.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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111292.49013205714 (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.02 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.8%)
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 | 6.915e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107915.73723483935 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.1%)
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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109089.45023922266 (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 : 1.87 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.2%)
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 | 7.075e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101484.60425398275 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (56.6%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101388.77288526959 (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.09 us (1.4%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 330.00 ns (0.2%)
LB compute : 145.22 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.8%)
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 | 6.825e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99435.86727211703 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.673e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98241.10865327738 (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.14 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.1%)
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 | 6.581e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95808.94162793017 (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 : 1.90 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.5%)
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 | 6.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89637.83815158167 (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 : 1.84 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (64.6%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80956.46838519999 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 6.795e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80582.18029924437 (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 : 1.81 us (1.0%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 173.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (68.3%)
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 | 7.234e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71650.00488795136 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71618.75658167673 (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 : 1.91 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70410.85822916472 (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 : 1.87 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65554.69818713874 (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 : 1.87 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58182.11393593797 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.0%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54859.73844448258 (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 : 1.79 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.9%)
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 | 6.755e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51443.55922911824 (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 : 1.86 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46690.58265294586 (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 : 1.81 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42819.78329446259 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.0%)
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 | 6.687e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40943.43873077615 (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 : 1.92 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.57 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37629.20987489348 (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 : 1.87 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 6.746e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34240.8453910803 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.24 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31413.06478601645 (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 : 1.97 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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 | 6.778e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28541.914635250152 (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 : 1.83 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.9%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25671.671176149535 (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.08 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 152.24 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.1%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22917.828579110515 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.5%)
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 | 7.085e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20707.823742439483 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19664.758583271156 (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 : 1.70 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.79 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18156.157494780975 (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 : 1.78 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16288.570037442229 (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 : 1.85 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14747.812478879325 (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.04 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 148.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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,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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12933.417069507364 (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 : 1.80 us (1.2%)
patch tree reduce : 570.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 142.06 us (95.6%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 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 | 6.653e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12408.47326614445 (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 : 1.90 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.506e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11518.118100900745 (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 : 1.97 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (58.9%)
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 | 6.623e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10272.43027175474 (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 : 1.77 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.7%)
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 | 6.833e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9043.79574874323 (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 : 1.83 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 142.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7950.905301799159 (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 : 1.91 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.32 us (95.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (50.2%)
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 | 7.250e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7042.13419130467 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 145.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6897.414321561504 (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 : 1.86 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 142.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6224.925098972434 (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.03 us (1.3%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.522e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5918.248448638857 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 143.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.481e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5438.747635127519 (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 : 2.08 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.64 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4587.169082051471 (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.20 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.2%)
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 | 6.758e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4369.83416840761 (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.05 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 6.747e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4017.262644926682 (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 : 1.76 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 160.85 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3606.2203920270613 (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.03 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3346.0053071802167 (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 : 1.89 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3166.9410128800782 (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.12 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 6.698e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2934.498510932648 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.16 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.676e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2734.358931272586 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2481.621965510029 (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.14 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.27 us (95.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (7.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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2320.6173155006495 (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 : 1.75 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.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.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 | 6.662e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2234.3187156469903 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.628e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2111.9084851123193 (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 : 1.96 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.97 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 6.737e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1960.997887743185 (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.19 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.661e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1878.4576082658427 (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 : 1.79 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 164.24 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.6%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1743.0266648382224 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.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 = (0,0,0)
sum e = 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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1656.499643209949 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1615.029681681058 (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 : 1.94 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 148.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.9%)
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 | 6.786e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1543.957101139383 (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.06 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (0,0,0)
sum e = 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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1420.8695386047443 (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 : 1.78 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.6%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1437.1249855903636 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (-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 | 6.531e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1468.0437303909198 (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 : 1.84 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.724e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1396.679693762149 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.99 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1356.2044020630644 (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 : 1.93 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1322.1844704979546 (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 : 1.91 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.817e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1330.280813206074 (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 : 1.72 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 143.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1321.3812561905518 (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.01 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1336.741562067284 (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 : 1.91 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.627e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1376.4899474121153 (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 : 1.94 us (1.1%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 174.11 us (96.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1340.0518557393 (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 : 1.93 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1360.848227630153 (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.19 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.03 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1376.2645059068257 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 792.00 ns (56.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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1394.3566927123127 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1458.1372845384133 (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 : 1.86 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.93 us (95.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.498e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1597.0691785963045 (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.16 us (1.4%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.47 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 | 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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1596.9482401542373 (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 : 1.98 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.40 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1649.3078607685873 (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 : 1.87 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 179.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1663.0082646584558 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1777.1689984147217 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.37 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (73.5%)
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 | 6.788e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1894.953066994886 (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 : 1.97 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.61 us (95.7%)
LB move op cnt : 0
LB apply : 1.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 | 6.706e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2022.556650875223 (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 : 3.59 us (2.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.3%)
LB compute : 164.97 us (94.6%)
LB move op cnt : 0
LB apply : 1.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 7.265e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1974.7509158448522 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2139.5612412635455 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.740e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2401.881049940828 (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 : 1.87 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 144.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 6.639e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2600.609433007793 (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 : 1.88 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.523e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830.079983410785 (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 : 1.97 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.55 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 6.708e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948.966720688826 (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 : 1.73 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 143.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3097.620221168139 (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 : 1.76 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3235.671300482129 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3660.3379776979104 (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.07 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 150.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3863.168319575589 (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 : 1.75 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.475e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4448.077108107791 (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.08 us (1.4%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.607e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4722.313353875624 (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 : 1.72 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.6%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4887.442174176653 (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 : 1.75 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5109.918336044156 (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 : 1.93 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 157.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5721.869084998072 (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 : 1.71 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.746e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6449.8961328899795 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.744e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7027.42661920931 (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.23 us (1.5%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.24 us (95.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.7%)
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 | 6.566e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7868.539166491865 (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.12 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.53 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.674e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8445.142600651474 (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 : 1.95 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 159.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8874.525026566354 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (61.7%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9800.861695036423 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.20 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10639.791502576081 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.607e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12123.332069955626 (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 : 1.80 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.60 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (53.6%)
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 | 6.493e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13474.128701359958 (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.29 us (1.5%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.15 us (95.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (62.0%)
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 | 6.777e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14098.957564584585 (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.11 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.587e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15842.009616124087 (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.03 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.796e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16761.589889529863 (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 : 1.81 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.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,-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 | 7.686e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16174.70364107057 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 151.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (58.1%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19873.27918048943 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (52.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 = (0,0,0)
sum e = 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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21498.295506481725 (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 : 1.83 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.014e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22949.115639080537 (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 : 1.82 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25805.62700212851 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 143.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.0%)
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 | 6.475e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29414.41296345088 (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 : 1.87 us (1.1%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 163.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30622.569915864442 (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 : 1.97 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.39 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.0%)
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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32420.42606079306 (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 : 1.83 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34154.13229914633 (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 : 1.74 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 6.935e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37891.49663390983 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41387.01499597779 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 6.623e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46182.45847504755 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.6%)
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 | 6.610e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49776.17718310119 (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 : 1.99 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52733.57447073109 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.7%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53830.13519379773 (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 : 1.70 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58450.69104012355 (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 : 1.94 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 7.315e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58957.9409996284 (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 : 1.84 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 145.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.787e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67569.95471343033 (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 : 1.78 us (1.2%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 142.28 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.707e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72508.81557075791 (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.12 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.8%)
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 | 6.642e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77420.0151928774 (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.07 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.9%)
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 | 6.779e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79955.05086441555 (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 : 1.80 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.0%)
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 | 6.911e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82411.80892419619 (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 : 1.76 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.3%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87308.44631973856 (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.08 us (1.4%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.30 us (95.6%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (49.8%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91716.11956431562 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 146.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93592.64188503039 (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 : 1.83 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 145.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96561.55687308783 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.523e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106075.07586319254 (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 : 1.88 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 162.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102055.0041379927 (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 : 1.75 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106970.12120401024 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110157.15686428167 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.5%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109527.87437589391 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110532.71767729035 (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 : 3.28 us (2.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.81 us (95.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.232e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105880.44527499743 (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.04 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.722e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114105.1441746841 (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.06 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 147.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112859.50761348396 (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.08 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.4%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107478.17554245272 (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 : 1.94 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 166.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104685.30425685739 (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 : 1.90 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104476.60535216497 (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 : 1.98 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 143.22 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.1%)
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 | 6.746e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107125.7016969998 (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 : 1.81 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100077.4077657226 (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 : 1.93 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.01 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.8%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95392.89256815535 (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.05 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95296.87346822151 (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.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95220.63444432167 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.3%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88950.18755436213 (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.06 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 153.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.406e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78546.56207014754 (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 : 1.80 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 240.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.1%)
LB compute : 181.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (61.3%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78588.05716188159 (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 : 1.69 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.22 us (95.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.0%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76123.10054163382 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72702.59568032234 (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 : 1.75 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66892.21113344222 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 | 6.742e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64610.51218744901 (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 : 1.99 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 166.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59722.14199864339 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 6.684e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56706.37236708261 (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 : 1.74 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 165.24 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.771e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51984.73125362648 (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 : 1.61 us (1.1%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 641.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (63.0%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45767.55596259551 (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 : 1.81 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42168.40350019494 (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 : 1.89 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40283.91819347345 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.3%)
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 | 6.690e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38152.69840780521 (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.24 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.47 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.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 = (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 | 6.554e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35744.55391874642 (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.06 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 154.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.1%)
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 | 6.860e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31282.008836517176 (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.00 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (67.2%)
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 | 6.712e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29241.64258268458 (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 : 1.74 us (1.0%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.2%)
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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25968.227438345177 (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 : 1.81 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24010.028716562607 (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 : 1.65 us (1.1%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.21 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21782.501859184315 (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 : 1.87 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (-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 | 6.686e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20265.493924980172 (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 : 1.76 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.7%)
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 | 6.508e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18932.072253067836 (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.11 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.599e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16965.20231392261 (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 : 1.94 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 6.914e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14705.0987915907 (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.02 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 162.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (72.2%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13598.932091554092 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 142.11 us (95.1%)
LB move op cnt : 0
LB apply : 1.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 6.605e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12686.61876289436 (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 : 1.72 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11061.416303215283 (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.11 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10159.103173264913 (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.09 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9404.515719806588 (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 : 1.89 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8368.312115937922 (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 : 1.91 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.470e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8005.95869396013 (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 : 1.78 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.40 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.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,0,0)
sum e = 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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6888.913498016626 (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 : 2.05 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.62 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.2%)
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 | 6.665e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6440.607598680325 (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 : 1.80 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.57 us (95.7%)
LB move op cnt : 0
LB apply : 1.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5829.979840480223 (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 : 1.79 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5259.8641007950655 (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 : 1.73 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4800.703758800089 (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.03 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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,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 | 6.781e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4412.648682340879 (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.10 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4109.8741266896905 (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 : 1.68 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.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 | 6.670e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3783.7347478401134 (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 : 1.67 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.3%)
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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3420.363344215012 (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 : 1.89 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (56.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 = (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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3128.274667166148 (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.03 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2887.7943865537163 (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.16 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 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 | 6.714e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2748.433329825595 (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 : 1.97 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.2%)
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 | 6.623e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2593.64863299916 (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.13 us (1.3%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2344.9838565545424 (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 : 1.74 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (69.1%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2169.1646887355514 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2051.0445829370856 (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 : 1.85 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1917.4533214193605 (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 : 1.77 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.89 us (96.3%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1816.089606686479 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.590e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1818.3145316271043 (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 : 1.89 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.551e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1745.0739349641367 (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 : 1.77 us (1.0%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (71.6%)
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 | 7.544e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1451.6174589706616 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1526.5416751868418 (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 : 1.74 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.7%)
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 | 6.701e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1518.2617525751903 (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 : 1.74 us (1.2%)
patch tree reduce : 301.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 6.669e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1480.176844779056 (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 : 1.72 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 141.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.595e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1458.5818081484788 (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 : 1.80 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.22 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1453.570539515479 (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.41 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.75 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 6.833e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1354.9456344114903 (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 : 14.87 us (8.8%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.78 us (88.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 6.945e-04 | 2.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1316.7973937100144 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 161.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1340.8935845039662 (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 : 1.78 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.8%)
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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1312.2994938493428 (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 : 1.72 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.7%)
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 | 6.778e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1336.083294027349 (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 : 2.02 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.950e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1310.630744352212 (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 : 1.91 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (57.0%)
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 | 6.927e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1328.4746101653172 (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.19 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.67 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.541e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1427.5998004405287 (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 : 1.68 us (0.9%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.98 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1350.2417596136602 (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 : 1.90 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.820e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1427.7962281771433 (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 : 1.74 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1493.8689206902548 (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 : 1.73 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 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 | 6.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1537.8751399508208 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.3%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1499.3146172133509 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.497e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1711.2620612715455 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.3%)
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 | 6.634e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1748.7616546608658 (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 : 1.75 us (1.0%)
patch tree reduce : 561.00 ns (0.3%)
gen split merge : 501.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 167.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1797.469997365704 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.61 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 = (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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1875.8142070929696 (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 : 1.69 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.49 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1934.9216479035142 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 6.820e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2085.5714918804297 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (71.8%)
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 | 6.701e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2250.740582417573 (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 : 1.92 us (1.3%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.62 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.0%)
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 | 6.550e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2448.4360865345216 (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.37 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 147.98 us (95.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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 = (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 | 6.869e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2489.2169436427735 (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 : 1.75 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 172.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.8%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2659.500785936138 (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 : 1.64 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.9%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2853.112147160012 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3016.9098033758555 (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 : 1.77 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 158.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3251.996750560402 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3462.391392761901 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 6.579e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4000.4622880826455 (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 : 1.90 us (1.3%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.60 us (96.0%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.544e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4349.754933495756 (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.04 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.6%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4367.3813262587955 (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 : 1.72 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.665e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5017.857690212701 (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 : 1.84 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5241.386020301825 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.709e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5885.281888369845 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 143.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 6.683e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6430.0152158853 (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 : 1.94 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.598e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7094.128911341192 (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.10 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.52 us (95.6%)
LB move op cnt : 0
LB apply : 1.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 6.709e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7605.265358849573 (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 : 1.81 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.75 us (96.3%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 = (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 | 6.663e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8352.578260499722 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.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 = (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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8773.470817265494 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.6%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9699.312337177877 (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 : 1.85 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.658e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10875.147533765954 (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 : 1.77 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11227.968764710524 (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 : 1.86 us (0.7%)
patch tree reduce : 371.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.1%)
LB compute : 261.97 us (97.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10961.536542449308 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 143.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.8%)
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 | 6.586e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14326.050976544026 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.584e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15652.075468657787 (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 : 1.67 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16293.097806842834 (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 : 1.94 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 164.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.9%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17703.92526993493 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.9%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18909.13019581591 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.79 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.806e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21456.002104366507 (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 : 1.91 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 6.710e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23705.117729842477 (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 : 1.82 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.55 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (0,0,0)
sum e = 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 | 6.474e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26743.13506538777 (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.00 us (1.3%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.620e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28438.27974912457 (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.30 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.99 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.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 = (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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29604.39275145624 (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.05 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31461.012538214512 (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 : 1.75 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35992.23006185658 (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 : 1.76 us (1.2%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.77 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (57.4%)
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 | 6.720e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38698.63429126325 (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 : 2.08 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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 | 6.750e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41614.20216885362 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 153.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (57.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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44818.84237731339 (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 : 1.94 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.569e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49620.471167829106 (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 : 1.71 us (1.0%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51052.38003479 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.5%)
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 | 6.645e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56468.01704927033 (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 : 1.94 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 6.773e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59234.97675710086 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.93 us (95.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.750e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63401.93216417158 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (-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 | 6.671e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68244.75954367513 (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.13 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 147.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 6.996e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69042.23034042276 (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 : 1.98 us (1.1%)
patch tree reduce : 300.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.5%)
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 | 6.869e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74400.29149860458 (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 : 1.88 us (0.9%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 195.57 us (96.6%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
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.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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75660.40501126408 (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 : 1.71 us (1.0%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 158.62 us (95.7%)
LB move op cnt : 0
LB apply : 1.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (61.9%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82761.87588994349 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.58 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 | 6.793e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87411.26291020049 (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 : 1.88 us (1.3%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.716e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92325.25016039831 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96763.81943513497 (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.08 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.654e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100517.3826043204 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.9%)
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 | 6.765e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102090.7480695166 (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 : 1.86 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 158.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.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 = (0,0,0)
sum e = 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 | 6.665e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106592.25065623732 (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 : 1.89 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 6.796e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107087.19140437711 (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.10 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.675e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111221.53004061941 (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 : 1.79 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108246.16118946773 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.467e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117926.83356399568 (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.02 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.81 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113627.54339879745 (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 : 1.98 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.1%)
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 | 6.529e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117905.81261398863 (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 : 1.71 us (1.0%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.9%)
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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113684.5705607631 (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 : 1.99 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109017.74488088969 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107869.04913854007 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.824e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108864.22234124201 (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.11 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (56.8%)
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 | 6.660e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109322.03091685122 (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 : 1.84 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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,0,0)
sum e = 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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105624.91493959796 (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.21 us (1.5%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.52 us (95.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.5%)
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 | 6.503e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106102.37303702309 (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.16 us (1.3%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,0,0)
sum e = 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 | 6.900e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96715.11664053099 (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 : 1.71 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94050.62588060583 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.86 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91375.33070039129 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.6%)
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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84571.82081678511 (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 : 1.77 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81823.81984952542 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (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 | 6.551e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81028.60423540088 (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.02 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.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 = (-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 | 6.837e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73306.17494014167 (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 : 1.84 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.30 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.7%)
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 | 6.924e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68111.7318677384 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.0%)
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 | 6.636e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66632.50971373878 (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 : 1.86 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 142.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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,-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 | 6.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61297.84116789146 (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 : 1.95 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 150.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55194.4183002734 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51570.47993956953 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.5%)
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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48922.92923633153 (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.13 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (57.6%)
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 | 6.701e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45726.80845069116 (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 : 1.95 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 164.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 6.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41931.734001720346 (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 : 1.90 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.4%)
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 | 6.766e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38412.32451908579 (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 : 1.96 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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 = (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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34224.70502486441 (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.14 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.37 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 6.777e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32263.318986948172 (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 : 1.89 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (0,0,0)
sum e = 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 | 6.962e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28730.986673097468 (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.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (95.7%)
LB move op cnt : 0
LB apply : 1.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 6.707e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27241.301332369443 (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 : 1.96 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 6.528e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25528.330015907184 (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 : 1.80 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.0%)
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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22085.75035397667 (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 : 1.68 us (0.9%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.80 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20310.825605530656 (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 : 1.66 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 139.88 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18357.868543309607 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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,0,0)
sum e = 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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16488.477107620012 (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 : 1.88 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15391.030290027787 (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 : 1.85 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 148.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14427.783256509514 (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 : 1.83 us (1.1%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 6.645e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12863.412785841057 (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 : 1.84 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.161e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10833.454860914053 (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 : 1.78 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (-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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10389.143226173092 (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 : 1.73 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.96 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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.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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9159.702182439265 (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.08 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.07 us (95.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (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 | 6.743e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8615.139947215926 (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 : 1.85 us (1.2%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (55.3%)
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 | 6.680e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7905.717813865698 (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.24 us (1.5%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 145.38 us (95.3%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,0,0)
sum e = 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 | 6.535e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7351.55949726657 (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.21 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.21 us (95.6%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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,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 | 6.574e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6653.675817312264 (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 : 1.71 us (1.0%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 6.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5876.212185721989 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.49 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.2%)
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 | 6.769e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5375.901980827018 (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.08 us (1.4%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 143.58 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 6.940e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4792.7452155022565 (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 : 1.69 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 178.07 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4227.489634378167 (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 : 1.98 us (0.3%)
patch tree reduce : 320.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.0%)
LB compute : 621.74 us (98.9%)
LB move op cnt : 0
LB apply : 1.69 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.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.153e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2421.1643686683074 (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.00 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (66.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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3738.059957348993 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3386.8651590168306 (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 : 1.93 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.2%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3178.5530672603313 (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 : 1.93 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2882.4604064359187 (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.01 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 145.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2807.998009677502 (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 : 1.92 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.6%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.92514618814 (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.22 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.2%)
LB compute : 171.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2308.849905644134 (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 : 1.81 us (0.8%)
patch tree reduce : 531.00 ns (0.2%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 210.71 us (97.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2102.9575161625794 (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 : 1.83 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.79 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2038.7821681589148 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1983.111150665097 (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 : 1.84 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.26 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1849.1938446468303 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1785.6866435882482 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.756e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1707.3992390921733 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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 = (0,0,0)
sum e = 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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1609.850378129901 (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 : 1.79 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1533.0019936077344 (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 : 1.94 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.7%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1464.5336857584807 (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 : 1.71 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 6.715e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1478.1572332928565 (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 : 1.80 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.45 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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,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 | 6.714e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1439.4190631883366 (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 : 1.85 us (1.3%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1378.873625110923 (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.02 us (1.4%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (57.2%)
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 | 6.699e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1385.8200919226297 (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.01 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 6.720e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1363.4478005842766 (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 : 1.79 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.2%)
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 | 6.693e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1357.1266341517223 (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 : 1.73 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.5%)
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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1292.0033661441528 (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 : 1.80 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 321.00 ns (0.2%)
LB compute : 142.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (-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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1345.4498357847388 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1322.3261531811575 (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 : 1.87 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.52 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.4%)
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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1336.0147815230225 (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 : 1.97 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1331.6796718721387 (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 : 1.85 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 6.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1391.372890483579 (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 : 1.99 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1410.5737988082071 (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 : 1.84 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.61 us (95.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1459.3259728525684 (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 : 1.67 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.30 us (96.3%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1504.2647123742565 (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 : 1.78 us (1.1%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (60.3%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1514.4518901720348 (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 : 1.74 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (-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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1584.795370366553 (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 : 1.78 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.509e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1766.4159796431165 (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 : 1.87 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.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 = (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 | 6.679e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1801.4315595048654 (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.5%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.94 us (95.7%)
LB move op cnt : 0
LB apply : 1.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 6.921e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1825.2509777992057 (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 : 1.86 us (1.1%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 145.61 us (88.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1939.3679567267477 (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 : 1.74 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 147.87 us (95.5%)
LB move op cnt : 0
LB apply : 1.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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,0,0)
sum e = 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 | 6.754e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2082.080283067801 (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 : 1.75 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (0,0,0)
sum e = 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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2122.8098249316977 (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.30 us (1.5%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.68 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2271.849192076817 (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 : 1.99 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.515e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2590.3596451890003 (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 : 1.84 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.683e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2697.6617055625443 (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 : 1.85 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.685e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2887.9175360937925 (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 : 1.65 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.2%)
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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3035.847774545539 (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 : 1.95 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.07 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3254.1783970314054 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.91 us (95.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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 | 6.732e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3566.7098666302636 (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 : 1.87 us (1.2%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.8%)
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 | 6.736e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3847.71346480232 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.53 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.0%)
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 | 8.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3469.8700043024164 (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.08 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.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 | 6.878e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4411.895497077119 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 = (-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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4830.738612187417 (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.09 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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 = (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 | 6.834e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5228.3092885823235 (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.04 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.49 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 = (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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5676.962966936642 (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 : 1.88 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.379e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5727.098545193827 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.76 us (92.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6613.956417537172 (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.09 us (1.2%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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,0,0)
sum e = 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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7006.520732076619 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7919.907890660117 (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.05 us (1.4%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8636.072035074989 (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.15 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.070e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9218.676848379067 (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.07 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.1%)
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 | 7.055e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10088.150320679895 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,-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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11295.288403986768 (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 : 1.92 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.20 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 6.803e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12481.948691134217 (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 : 1.94 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13530.224981891737 (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 : 1.91 us (1.2%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.941e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14595.383983521891 (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 : 1.93 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (58.2%)
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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15889.21348816991 (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.04 us (1.4%)
patch tree reduce : 311.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.18 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16947.006085558656 (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 : 1.88 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.1%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18979.105838550888 (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 : 1.97 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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,0,0)
sum e = 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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21040.251585522205 (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.01 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 = (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 | 6.628e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23614.49135678786 (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 : 1.87 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (69.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 = (0,0,0)
sum e = 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 | 6.861e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24835.160996456085 (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.09 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.07 us (95.6%)
LB move op cnt : 0
LB apply : 1.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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 = (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 | 6.852e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27045.91776749471 (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 : 1.98 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.4%)
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 | 7.392e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27241.246877599257 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31850.760135760822 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34761.78775379607 (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.01 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.9%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36459.52395832355 (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.07 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.48 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (55.0%)
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 | 6.718e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41229.23084557625 (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.29 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.933e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43090.91396801598 (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 : 1.93 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.5%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46747.5484543618 (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.17 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.81 us (95.9%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (58.8%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50093.08410985188 (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 : 1.73 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.15 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53699.69953395613 (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 : 1.89 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57704.07821156502 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.55 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.9%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59674.27846844742 (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 : 1.88 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.59 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64285.07671135701 (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 : 1.89 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.65 us (95.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.0%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69770.162542639 (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 : 1.93 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 154.79 us (95.7%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.2%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74178.21523929112 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75959.56594440276 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82357.09934778842 (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 : 1.85 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84968.2339369022 (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.06 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.70 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86865.57224720503 (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 : 1.96 us (1.3%)
patch tree reduce : 531.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.84 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (63.8%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93374.21805221341 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 142.80 us (95.5%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97796.78963158364 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 143.99 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.776e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101582.22657826886 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.06 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 | 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 | 6.643e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106665.16500129069 (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 : 1.76 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.787e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107063.143005024 (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.03 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 144.21 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.2%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105708.89305470772 (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 : 1.93 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.34 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109648.60737055741 (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 : 1.98 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111709.77860068233 (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 : 17.32 us (3.6%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 454.41 us (93.3%)
LB move op cnt : 0
LB apply : 9.70 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (71.0%)
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 | 1.575e-03 | 1.8% | 0.0% 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 : 2.40 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 183.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.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 | 9.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.23394230344145 (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 : 1.97 us (0.9%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 200.94 us (96.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (68.3%)
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 | 8.579e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861.571772287363 (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.23 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 173.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 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.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 | 8.420e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4802.35841754967 (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.18 us (1.2%)
patch tree reduce : 420.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 170.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 8.802e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5796.8422938568165 (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.05 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 = (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 | 7.534e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7709.590938002794 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.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 = (-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 | 7.713e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8140.5186994906435 (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.02 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.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 = (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 | 8.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8183.403592344858 (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.34 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 168.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.136e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9531.286701830868 (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.29 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 186.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.567e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9172.271905833835 (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.06 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 152.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9982.76033316961 (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.11 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 183.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.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 | 7.308e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9707.481138965935 (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 : 1.96 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 190.91 us (96.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.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 = (-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 | 7.752e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9203.427530542083 (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.16 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.9%)
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 | 7.366e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9721.56633039954 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.72 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10266.721940121563 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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 = (-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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9931.96004844751 (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.37 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 182.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.5%)
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 | 8.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8972.863107234207 (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 : 1.99 us (1.0%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 186.26 us (96.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.8%)
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 | 7.532e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9560.672781996725 (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.01 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.14 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.3%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10243.965664325431 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 | 7.368e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9776.617970088406 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.264e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9917.54095959126 (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 : 2.18 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 154.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9835.763266638454 (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 : 1.95 us (1.3%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 145.73 us (95.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.933e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10387.647929189863 (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 : 1.91 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 195.89 us (96.8%)
LB move op cnt : 0
LB apply : 1.31 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.5%)
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 | 8.624e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8349.088868071374 (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 : 2.33 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 175.43 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.6%)
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 | 8.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8983.195442868977 (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.24 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10138.057775394987 (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.08 us (0.6%)
patch tree reduce : 380.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 319.33 us (97.8%)
LB move op cnt : 0
LB apply : 1.59 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (71.4%)
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 | 9.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7961.029706101521 (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.31 us (1.3%)
patch tree reduce : 371.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 : 177.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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,-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 | 7.745e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9286.488871136396 (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 : 1.99 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 173.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9188.194547629317 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.8%)
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 | 7.668e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9373.652500367612 (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.01 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 161.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.2%)
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 | 7.101e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10118.086959614937 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.413e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9688.011276275687 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.00 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9927.292131146974 (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.12 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10097.856557914578 (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.28 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.015e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10225.543350059346 (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.49 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (65.6%)
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 | 7.580e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9458.584829316884 (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.01 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 202.87 us (96.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 8.483e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8448.560178710004 (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.15 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 180.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (68.9%)
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 | 7.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9687.926111345823 (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.08 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 205.90 us (96.7%)
LB move op cnt : 0
LB apply : 1.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.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.7755575615628914e-17,0)
sum e = 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 | 7.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9154.648620852695 (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.02 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 162.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.718e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9271.80890665083 (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.11 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.351e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9729.690816308932 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.74 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (50.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,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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10258.190578446915 (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 : 1.87 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10088.446147382525 (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.02 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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,1.3877787807814457e-17,0)
sum e = 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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9730.930348899125 (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.13 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.010e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10180.797805560218 (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 : 1.93 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 168.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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 = (-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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9924.990572111032 (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.09 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.313e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9748.029075076158 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (67.2%)
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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9831.611607404857 (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.14 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.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,-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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9687.44866336438 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 145.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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,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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9860.804982889593 (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 : 1.97 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 170.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9874.033382715517 (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.02 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.70 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.9%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9751.453429962128 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 = (-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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10077.98555146326 (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.11 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 159.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (-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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9759.459222697958 (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.05 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9817.317004404933 (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 : 1.82 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 168.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.170e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9885.37039972947 (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.02 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 174.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (62.8%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9926.253076822886 (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.21 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.69 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (63.2%)
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 | 7.121e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9939.28011698676 (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.03 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9770.618581560535 (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 : 1.97 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9892.92868240892 (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 : 1.93 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.6%)
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 | 7.107e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9936.415217613427 (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 : 1.75 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 144.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.8%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10139.954667405053 (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 : 1.86 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.44 us (95.8%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9919.504198508002 (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 : 1.92 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 164.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9586.050459537106 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (-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 | 7.006e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10049.581374719317 (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.14 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 172.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9954.928994731097 (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.29 us (1.5%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 144.71 us (95.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (68.1%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10262.697234335828 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 380.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 146.09 us (95.3%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 | 6.766e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10380.799459447118 (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 : 1.79 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9805.441494712433 (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.08 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (64.8%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10000.788954995622 (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.10 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9739.314133592366 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (54.9%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9745.432562838096 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.2%)
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 | 7.002e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9988.459109810914 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 147.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10069.244146050634 (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.16 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 7.114e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9814.147984498499 (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.13 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 181.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (68.0%)
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 | 7.414e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9408.38864758117 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.66 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.821e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10217.662450230855 (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.09 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10080.612338043491 (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.00 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 172.26 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.1%)
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 | 7.298e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9532.870172388524 (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 : 1.85 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 6.892e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10084.387182634926 (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.16 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.9%)
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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9481.338707613446 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.64 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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 = (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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9967.889504617771 (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.02 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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.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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9585.758989271828 (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.13 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.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 = (-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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9454.843589236469 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 = (-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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9614.737599279319 (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.17 us (1.4%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.21 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9878.81600502023 (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 : 1.95 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9542.489891187943 (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.15 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.3%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9873.297402529373 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (59.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 = (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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9513.809652580458 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 = (0,0,0)
sum e = 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 | 6.885e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10000.090831874284 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 = (-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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9898.733034941994 (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 : 1.75 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 180.28 us (96.6%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.775e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8837.294884284984 (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.82 us (1.8%)
patch tree reduce : 1.58 us (1.0%)
gen split merge : 581.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.7%)
LB compute : 148.11 us (93.3%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.2%)
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 | 7.320e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9378.43827100347 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9564.656938783797 (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.01 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.76 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 = (-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 | 7.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8743.48366086671 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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,-8.326672684688674e-17,0)
sum e = 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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9324.323436334531 (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 : 1.93 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 176.24 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 = (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 | 7.662e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8924.238451836833 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 = (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 | 7.270e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9395.9935785713 (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 : 1.67 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.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 = (-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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9466.704475647968 (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 : 1.89 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 152.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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,2.7755575615628914e-17,0)
sum e = 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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9656.10107200323 (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 : 1.93 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 178.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9471.34899009917 (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.06 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.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.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 | 7.151e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9513.675496261494 (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 : 5.28 us (3.0%)
patch tree reduce : 1.78 us (1.0%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.7%)
LB compute : 163.31 us (92.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 = (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 | 7.136e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9523.17888077656 (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.29 us (1.5%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.25 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (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 | 7.069e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9603.342985593948 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (65.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 = (-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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9665.95202947632 (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.20 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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,-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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9334.00985142728 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 = (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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9647.914152741785 (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 : 1.72 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.57 us (96.2%)
LB move op cnt : 0
LB apply : 891.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9405.29913438127 (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 : 1.74 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.12 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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,-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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9447.084907779734 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9292.474951957094 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 143.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9721.08566553784 (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 : 1.79 us (1.2%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 147.39 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9768.068797991453 (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 : 1.99 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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 = (-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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9293.013571285632 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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,-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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9787.49387794779 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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,5.551115123125783e-17,0)
sum e = 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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9469.62807480553 (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 : 1.92 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9555.049307701127 (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.52 us (1.4%)
patch tree reduce : 441.00 ns (0.2%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 168.90 us (95.5%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (71.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.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 | 7.157e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9359.968559365601 (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 : 1.93 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 150.37 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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 = (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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9183.53920507191 (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 : 1.76 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.619e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8773.766286827202 (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 : 1.75 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.82 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.0%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9409.545668380448 (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.00 us (1.3%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 146.18 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 = (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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9257.39723751166 (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 : 1.67 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9440.28425185913 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.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 = (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 | 7.410e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8985.051577140694 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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,5.551115123125783e-17,0)
sum e = 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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9523.927078668892 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 6.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9643.174973530718 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 = (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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9570.69723893606 (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.48 us (1.6%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.26 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9450.796374453677 (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 : 1.70 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9511.243980182217 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (60.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9108.792584501443 (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.25 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.03 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9315.073341810557 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 159.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 = (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 | 7.746e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8525.742934637343 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9054.906118843237 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9269.105266604003 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (58.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 = (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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9043.145086168937 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 = (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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9484.411860517306 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 = (-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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9458.997472221607 (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.03 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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,-5.551115123125783e-17,0)
sum e = 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 | 6.850e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9585.039939186121 (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.08 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9101.009311022159 (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 : 1.82 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 175.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.384e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8875.087514972136 (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 : 1.86 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 = (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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9155.951368885553 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.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 = (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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9099.862853303513 (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 : 1.78 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9146.080723128543 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.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 = (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 | 7.356e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8876.396261265929 (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 : 1.66 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 168.26 us (96.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (69.8%)
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 | 7.445e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8762.221690486898 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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 = (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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9229.327616948873 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9164.121427363309 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8988.712952626116 (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 : 1.76 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 199.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.26 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.486e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8682.58965203549 (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 : 2.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.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,-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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9519.502287362153 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.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 = (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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9054.793610151512 (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.01 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 175.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.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 = (-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 | 7.329e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8846.274963533951 (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 : 1.70 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (53.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 = (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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9068.550162136782 (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 : 1.73 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8924.334787719596 (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.01 us (1.3%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.4%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9185.242054001243 (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 : 1.96 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.341e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8802.114788925897 (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 : 1.76 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9083.77695451529 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (58.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,-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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8993.294942528011 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.62 us (95.7%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.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 = (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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9133.260194613677 (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.09 us (1.4%)
patch tree reduce : 691.00 ns (0.5%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 145.69 us (95.0%)
LB move op cnt : 0
LB apply : 1.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 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-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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9405.132347913179 (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.05 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 161.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9133.773007114469 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.22 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.878e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9350.154320036903 (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 : 1.80 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8908.957834948462 (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 : 1.67 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.2%)
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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8944.96275367687 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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 = (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 | 7.565e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8482.528249967236 (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 : 1.68 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.9%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9117.070926804805 (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.19 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8918.908835862947 (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.01 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (72.7%)
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 | 7.333e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8733.073157261857 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8976.75476561973 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9185.645135755507 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9183.883513862898 (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 : 1.89 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8999.707399967374 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.085e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9009.979740576686 (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 : 1.71 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 187.18 us (96.7%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.6%)
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 | 7.502e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8503.97180843482 (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 : 1.75 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9034.256314405267 (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.04 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.56 us (89.4%)
LB move op cnt : 0
LB apply : 13.54 us (7.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.373e-04 | 2.1% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8642.830111938305 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8796.626192648277 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (60.7%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9021.529172418444 (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 : 1.94 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.989e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9103.146039418394 (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 : 1.92 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 169.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (59.2%)
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 | 7.423e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8567.355262161915 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.62 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8840.378591685168 (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 : 1.95 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 177.01 us (96.5%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.6%)
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 | 7.521e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8447.085410376192 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9128.165558393031 (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.01 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.5%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8861.368961959195 (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.00 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8644.2953161599 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.77 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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,0,0)
sum e = 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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9116.99916738892 (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 : 1.66 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.79 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8990.22751994725 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.61 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8802.12724790904 (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 : 1.91 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8704.446692062142 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (64.9%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8768.36517404601 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.152e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8851.762334423222 (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 : 1.80 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 164.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.359e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8600.17814415664 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8701.254455656383 (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 : 1.79 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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 = (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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9074.79894971468 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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.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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8873.579184912232 (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.06 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.58 us (95.9%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9243.477971581638 (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.38 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.06 us (95.6%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (-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 | 7.012e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9014.819517872173 (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.00 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 12.89 us (7.7%)
LB compute : 148.94 us (88.6%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8815.85229733615 (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.11 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8697.141898000405 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8865.74125557561 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8939.124587346727 (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 : 1.82 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.438e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8492.879065625895 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8857.8522622329 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 146.15 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9035.97671303573 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 160.55 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8771.160949954656 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.9%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8903.604696694785 (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 : 1.99 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 169.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8795.559986390486 (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 : 1.93 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.956e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9079.036591102487 (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.00 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9222.967328110079 (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.16 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.52 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (73.9%)
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 | 7.344e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8600.675767196311 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.3%)
LB compute : 144.51 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8766.895764092435 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.71 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 8.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7878.7328652385595 (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 : 1.80 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 7.405e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8532.068832488723 (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 : 1.73 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 148.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8717.311545314673 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 7.128e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8866.965394002751 (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.06 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.437e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8500.63858222997 (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 : 1.82 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.81 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9105.502929597256 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.11 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 = (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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9294.076677160512 (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 : 1.86 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9140.414976504766 (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 : 2.04 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.7%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9240.455496062435 (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 : 1.81 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 164.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9025.879276367177 (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 : 1.74 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.57 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8688.655474960195 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8978.33400987408 (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.03 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.23 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (59.4%)
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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8739.226621902697 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 146.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 = (-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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8746.37312595477 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8816.13966546775 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (55.6%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8767.421628068114 (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 : 1.86 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.8%)
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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8819.693408945583 (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 : 1.92 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9204.747073457478 (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 : 1.99 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8963.37111951063 (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.08 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 149.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9192.450383511543 (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 : 1.87 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 176.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (66.5%)
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 | 7.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8509.292755985003 (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 : 1.83 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 174.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8868.301989560838 (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 : 1.73 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.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,5.551115123125783e-17,0)
sum e = 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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8667.887749296699 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9043.015577254415 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9059.021226858498 (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 : 1.74 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.6%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8944.014792926851 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9205.597392382579 (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 : 1.83 us (0.8%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 224.63 us (97.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (68.6%)
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 | 7.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8130.520252963137 (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.11 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9257.524147992925 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.0%)
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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8923.95830603832 (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 : 2.03 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 180.69 us (96.4%)
LB move op cnt : 0
LB apply : 1.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.2%)
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 | 7.468e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8583.253641827052 (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.28 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.99 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9153.708718556116 (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.01 us (1.2%)
patch tree reduce : 431.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 167.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8885.007334219044 (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 : 1.93 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 169.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (55.5%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8753.82724528023 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.89 us (95.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.1%)
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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9089.147930023275 (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 : 1.96 us (1.3%)
patch tree reduce : 641.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (62.3%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8986.645584635231 (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 : 1.68 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9074.81518409186 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.89 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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.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 | 7.290e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8853.433938899618 (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 : 1.90 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.8%)
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 | 7.414e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8714.646899143276 (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 : 1.90 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9310.05432288336 (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.11 us (1.2%)
patch tree reduce : 591.00 ns (0.3%)
gen split merge : 451.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 173.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (54.4%)
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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8842.756352360482 (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.06 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 381.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 145.15 us (95.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 = (-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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9434.274482650864 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.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 = (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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9126.470982880897 (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 : 1.78 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 177.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,-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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8931.989373704133 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9293.129067239932 (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 : 1.93 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.40 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8941.119521693 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.452e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8755.293588559329 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8902.59769435621 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (75.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 = (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 | 7.072e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9251.385447474508 (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 : 1.84 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.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 = (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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9232.727203396584 (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 : 1.73 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.44 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (0,0,0)
sum e = 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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9145.283348439314 (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 : 1.76 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9112.361120715404 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.0%)
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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9579.377695732355 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.2%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9578.893075217711 (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.11 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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,2.7755575615628914e-17,0)
sum e = 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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9291.419261048839 (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 : 1.86 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9311.27233635941 (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.09 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 182.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.1%)
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 | 7.432e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8911.582510938073 (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 : 1.99 us (0.8%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 236.06 us (97.1%)
LB move op cnt : 0
LB apply : 1.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.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 = (-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 | 7.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8406.757093901446 (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 : 1.91 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.1%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9113.09073143145 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.1%)
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 | 7.179e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9272.344585128409 (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 : 1.85 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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.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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9390.035652237339 (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 : 1.83 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.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 = (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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9147.788507777263 (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 : 1.66 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.6%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9482.128118378538 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9194.785812881855 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.9%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9737.026281198858 (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 : 1.95 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 = (-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 | 6.983e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9637.74286337994 (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.16 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.902e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9769.595229802057 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 = (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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9627.602706384623 (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 : 1.73 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.76 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.333e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9233.015277152159 (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 : 1.92 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9562.620653399052 (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 : 1.64 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.0%)
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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9474.965098531096 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.5%)
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 | 7.132e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9551.911487257761 (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 : 1.90 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (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 | 7.392e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9236.593417429607 (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 : 1.92 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (-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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9528.603959961783 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9734.86770790822 (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 : 1.74 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.76 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.4%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9720.772292874224 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9808.20141719488 (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.26 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.44 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.1%)
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 | 7.152e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9652.999975627206 (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.19 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9974.355713485853 (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.19 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.376e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9404.695850203101 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.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 = (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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9748.196190683631 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9971.667756616142 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.48 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 7.313e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9555.281290426223 (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 : 1.74 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9673.869164534975 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.89 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.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 = (-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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9795.214275844706 (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 : 1.87 us (1.2%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 144.62 us (95.6%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9911.974903847713 (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 : 1.70 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9805.582607247214 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10175.18671881446 (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.02 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.184e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9879.737777859462 (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.07 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.9%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9883.557757143948 (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.7%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 149.66 us (95.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10278.280124151626 (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.22 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 170.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9725.136567605688 (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 : 1.94 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9917.085894116104 (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 : 1.70 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.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 = (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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10150.894686328193 (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 : 1.98 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 154.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9872.701873833794 (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 : 1.72 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10061.84760775968 (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 : 1.82 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 163.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.2%)
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 | 7.306e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9936.661075427153 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10165.7928575068 (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.22 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (57.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 = (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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10123.79233689947 (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 : 1.70 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.06 us (96.3%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (-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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10276.89823829628 (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 : 1.78 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.14 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10348.252522125078 (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 : 1.87 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10761.58872094355 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (53.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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10371.663984042672 (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 : 1.69 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (65.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 = (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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10556.106590894467 (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 : 1.66 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 142.03 us (96.1%)
LB move op cnt : 0
LB apply : 891.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.331e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10152.46893728304 (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 : 1.70 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 = (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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10575.771881582983 (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 : 1.71 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.473e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10024.887392036228 (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 : 1.77 us (1.0%)
patch tree reduce : 701.00 ns (0.4%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10329.71778302069 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.84 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10642.595083595104 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.18 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10823.312799771444 (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 : 1.67 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.68 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.862e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11066.521056321431 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 8.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8562.236738710515 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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 = (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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11130.820217419845 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.0%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11199.797374579797 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.86 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10747.704890046994 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10689.59042394474 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.25 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11012.717390704976 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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 = (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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11023.529026138816 (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 : 1.76 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 = (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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10814.466707279884 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 = (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 | 7.345e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10681.195701227203 (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 : 1.97 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.7%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10927.303694035145 (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 : 1.73 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10908.662758867085 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.72 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11356.185060321386 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.9%)
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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11257.40222225967 (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.11 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10947.297452340068 (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 : 1.90 us (1.2%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.84 us (95.7%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11193.796421378125 (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 : 1.80 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 170.03 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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.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 | 7.366e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10946.977559105662 (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 : 1.75 us (1.1%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11162.035136300901 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.05 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.6%)
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 | 8.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10059.996972785377 (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 : 1.90 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.1%)
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 | 7.319e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11153.433818330257 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (74.4%)
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 | 7.161e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11446.193543264884 (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 : 1.84 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (56.1%)
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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11305.906477600189 (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.27 us (1.5%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 691.00 ns (0.4%)
LB compute : 147.31 us (94.9%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (52.6%)
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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11357.371641531452 (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 : 1.84 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11384.25900114321 (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 : 1.89 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.38 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.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 = (0,0,0)
sum e = 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 | 7.306e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11412.301677350282 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (66.3%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11681.91466823026 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12038.721494166075 (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 : 1.89 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.32 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.7%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12199.307947738855 (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 : 1.89 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (66.3%)
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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12458.936949492328 (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 : 1.87 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.73 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.2%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12055.318218639091 (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.54 us (1.6%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.11 us (95.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (66.3%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11977.658403451354 (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 : 1.71 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 = (-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 | 7.257e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11853.74824746511 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.84 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12241.575172243203 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12238.95420581932 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 143.95 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12496.763937113148 (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 : 1.91 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 7.011e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12501.872852603134 (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 : 1.94 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.2%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12812.608356185194 (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.12 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12847.039820154954 (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 : 2.13 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.92 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 7.488e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11875.05932964586 (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 : 1.98 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12220.785617969099 (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 : 1.70 us (0.8%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 205.65 us (96.8%)
LB move op cnt : 0
LB apply : 1.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (69.7%)
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 | 7.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11420.042727298582 (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.02 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 183.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.0%)
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 | 7.334e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12304.930121608952 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (59.5%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12638.743128611975 (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.02 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (65.1%)
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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12419.854212013468 (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 : 1.76 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.74 us (96.3%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12644.598124210315 (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 : 1.66 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13043.545189570608 (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 : 1.93 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12742.506093880651 (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 : 1.83 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 179.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 7.656e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12154.657841542605 (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.00 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 7.368e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12696.592268236769 (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 : 1.83 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13430.250658425772 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13442.649534402113 (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.13 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13519.522519062186 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.16 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.5%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13767.706744449706 (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 : 1.69 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 190.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.5%)
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 | 7.412e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12965.681908504972 (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 : 1.97 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 163.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13432.626421248848 (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 : 1.74 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.50 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (68.2%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13642.299400479895 (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 : 1.62 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (55.4%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13905.236438848868 (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.15 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.176e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13695.716128704578 (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 : 1.71 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.05 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14023.281348330189 (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 : 1.88 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13901.36706636358 (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 : 1.91 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (63.3%)
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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13662.567225367804 (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.00 us (0.5%)
patch tree reduce : 370.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 399.66 us (98.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.5%)
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.022e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9842.48063024694 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.9%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14198.807109449506 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13911.71482931944 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.328e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13972.366871775257 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15146.817869984265 (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 : 1.89 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14680.61236185082 (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.06 us (1.2%)
patch tree reduce : 581.00 ns (0.3%)
gen split merge : 481.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 164.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14780.240103479937 (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 : 1.87 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.334e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14307.687056566014 (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.04 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14955.32618237617 (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.10 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.8%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14774.991434082003 (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.08 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.33 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (67.4%)
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 | 7.202e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14850.127390605248 (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.21 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 147.88 us (95.5%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 7.330e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14685.662531075073 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.03 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14965.689227691535 (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 : 1.91 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15509.639987822658 (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 : 1.84 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 171.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.270e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15100.03576939509 (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 : 1.83 us (1.1%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.9%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15176.09926059048 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 6.882e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16169.289681759814 (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.07 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16306.318379755681 (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 : 1.87 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.44 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (66.3%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15603.066523605581 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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-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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15749.635465645011 (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.08 us (1.4%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.1%)
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 | 7.314e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15642.360205351619 (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 : 1.79 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15905.559668015409 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 7.544e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15383.564726837163 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15633.306641747098 (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 : 1.91 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (44.8%)
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 | 7.375e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15968.604687646408 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16788.936319096476 (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 : 1.80 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17027.478365139752 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.823e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17654.156857537273 (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 : 1.94 us (1.3%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17289.616758714328 (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 : 1.90 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 179.10 us (96.5%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.6%)
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 | 7.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16546.52462641711 (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 : 1.86 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17419.277988913906 (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 : 1.72 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.6%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17231.829038256885 (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 : 1.84 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17792.217559292636 (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.00 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.84 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.6%)
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 | 7.427e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17008.881925984948 (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 : 1.67 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 7.271e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17519.437616279225 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 7.419e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17313.59672990085 (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 : 1.88 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 = (-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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17760.54958388774 (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 : 1.78 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18148.771992737362 (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 : 1.92 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.07 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19194.962656055075 (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.10 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.39 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19252.534845748196 (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.09 us (1.3%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 7.053e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19021.299737442965 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.5%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19493.803830120873 (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 : 1.90 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 = (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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19139.509970220028 (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.13 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.1%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19373.212902578234 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19202.194109633696 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19342.673948532603 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.22 us (95.6%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19562.636733697465 (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 : 1.99 us (1.2%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 7.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19375.14816632697 (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 : 1.89 us (0.7%)
patch tree reduce : 371.00 ns (0.1%)
gen split merge : 430.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 269.07 us (97.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.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 = (-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 | 8.421e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17180.64813070521 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 8.833e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16543.97401976251 (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 : 1.97 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.92 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 7.247e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20367.31910603887 (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 : 1.73 us (1.2%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20930.60218563869 (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.12 us (1.4%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 731.00 ns (0.5%)
LB compute : 143.65 us (94.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (55.8%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21454.587903503325 (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 : 1.85 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.1%)
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 | 7.476e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20354.937292451446 (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 : 1.89 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.8%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22065.02460871178 (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.02 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.56 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (54.5%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22708.115899444998 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22495.652506546812 (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 : 1.71 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 164.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22165.923354676113 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22458.698934490334 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23467.3238886042 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.63 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (70.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 | 7.119e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22967.634129490743 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23439.23554363165 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.87 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23385.379121290298 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24455.326431452697 (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 : 1.88 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24304.044368623545 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25095.192848434934 (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 : 1.89 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 181.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.5%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23814.63894582405 (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 : 1.96 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 175.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.434e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23427.368934342532 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24579.60974399466 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.37 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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.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 | 7.354e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24016.31927039227 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.1%)
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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24614.36621217129 (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.18 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24568.96561165102 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25068.43270188039 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25418.357020207604 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (54.2%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25540.30602580153 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.03 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26394.554946795695 (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.04 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25364.514661396526 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.28 us (95.7%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.244e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25100.11682820537 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.1%)
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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25818.195468515376 (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 : 1.85 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 169.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.1%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25258.561581986938 (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 : 1.80 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25870.033679526106 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.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 | 7.301e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24861.012227540174 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25477.53875118408 (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 : 1.85 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (68.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 | 7.417e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24371.424622384475 (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 : 1.88 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.636e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23612.318084495902 (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 : 1.99 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24777.118630846995 (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.00 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.274e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24633.08646648188 (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 : 1.76 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.39 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.5%)
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 | 7.359e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24265.049600726943 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.2%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25588.160224067764 (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.19 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 7.240e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24477.439540436593 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.6%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24993.596108012516 (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.29 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.13 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24799.062758900756 (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 : 1.71 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 177.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.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 | 7.296e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23990.432706371394 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.16 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24744.92034660849 (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 : 1.67 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.5%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24330.430421264824 (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 : 1.71 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.71 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.117e-04 | 2.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24268.82386038659 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 145.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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,-5.551115123125783e-17,0)
sum e = 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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23955.206004860327 (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 : 1.93 us (1.3%)
patch tree reduce : 610.00 ns (0.4%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.72 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (57.2%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24333.500675519223 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.8%)
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 | 7.251e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23495.78777086323 (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.22 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.57 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24354.259159556972 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 6.878e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24538.272446561547 (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.05 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24399.144734352154 (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.20 us (0.7%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 440.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 313.38 us (97.6%)
LB move op cnt : 0
LB apply : 1.49 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (71.5%)
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 | 8.726e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19157.393788511607 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 480.00 ns (0.3%)
LB compute : 145.70 us (95.7%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24100.782868991802 (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 : 1.70 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 176.22 us (96.5%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.8%)
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 | 7.469e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22166.424294148597 (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 : 1.78 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 184.84 us (96.6%)
LB move op cnt : 0
LB apply : 1.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.2%)
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 | 7.610e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21650.267689478853 (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 : 1.97 us (1.2%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 156.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.7%)
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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22513.535786739438 (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 : 1.93 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22742.96587480717 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.76 us (96.0%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (56.2%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23073.364346080514 (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 : 1.95 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 | 7.617e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21200.005737092666 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22843.9250387803 (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 : 1.97 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.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 = (-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 | 7.378e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21660.319118892505 (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 : 1.98 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22144.104435283436 (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 : 1.77 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.75 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.4%)
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 | 7.321e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21594.92158845373 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22072.270587047817 (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.08 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.11 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21587.425653490387 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22199.552896380956 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22523.80805339478 (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 : 1.89 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 172.49 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.8%)
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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21121.265059137273 (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 : 1.68 us (1.1%)
patch tree reduce : 550.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.20 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21577.489210913103 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.82 us (96.1%)
LB move op cnt : 0
LB apply : 911.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21039.93218252491 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.3%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20987.925406736744 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20797.975515992493 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.74 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21370.440930976245 (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 : 1.74 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21071.65569814571 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.18 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21513.685488148807 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.45 us (95.9%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.809e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21461.641601178308 (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 : 1.89 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20400.63557758846 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20490.350701933483 (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 : 1.83 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.03 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20291.826020491782 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (59.5%)
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 | 7.403e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19191.23057372581 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.511e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18777.3097761404 (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.01 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.366e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19004.532811616507 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 7.366e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18861.580937136747 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.80 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19275.577930242438 (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 : 1.76 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.9%)
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 | 7.436e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18395.76221441248 (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 : 1.90 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.1%)
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 | 7.374e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18401.730677702963 (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 : 1.95 us (1.2%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.21 us (95.7%)
LB move op cnt : 0
LB apply : 1.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.395e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18202.809084383432 (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.07 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.4%)
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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18614.398779797848 (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.07 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18762.33828943712 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.70 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19245.626956024927 (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 : 1.74 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.14 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18281.966139810866 (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 : 1.98 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 180.84 us (96.4%)
LB move op cnt : 0
LB apply : 1.35 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.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 = (-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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17802.03276626357 (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.03 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (57.6%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18013.220458404514 (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 : 1.84 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 510.00 ns (0.3%)
LB compute : 145.57 us (95.1%)
LB move op cnt : 0
LB apply : 1.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.6%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17937.01459739393 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 152.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17300.355300204417 (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.37 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.373e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16885.94389705823 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.75 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17094.12663647864 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (65.0%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16985.63632419841 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 7.260e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16679.26583646909 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16781.276949064508 (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.10 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.880e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17268.17521864702 (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 : 1.97 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.4%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16766.305144285347 (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.02 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 181.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16182.020662434805 (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 : 1.98 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.49 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16263.909251758096 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.36 us (87.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (65.0%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16046.68081435047 (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 : 1.73 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.43 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16045.221123280544 (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 : 1.96 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 7.291e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15366.651040842165 (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 : 1.64 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 173.99 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (67.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 = (-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 | 7.475e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14838.42293891319 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.24 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 7.348e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14944.295140564944 (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.16 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.74 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15368.578393199634 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14770.890041630153 (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.04 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.4%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14802.413870695138 (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.38 us (1.5%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.206e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14633.56620167014 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.8%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14859.215318510744 (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.04 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14400.908410175503 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14857.774550564915 (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.16 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 280.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 198.97 us (96.8%)
LB move op cnt : 0
LB apply : 1.24 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 7.648e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13235.112780838148 (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 : 1.74 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 7.142e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14028.512500705227 (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.00 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 177.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13662.28878680588 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 170.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13641.996103350393 (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 : 1.91 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 185.60 us (96.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.4%)
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 | 7.693e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12628.79513372894 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13455.442346082835 (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 : 1.84 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.422e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12824.757025966646 (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 : 1.88 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.0%)
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 | 7.339e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12837.116215914613 (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 : 1.90 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.430e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12551.174733469219 (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 : 1.92 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.2%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12709.701151564 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 156.43 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12720.79040718611 (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 : 1.99 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.4%)
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 | 7.342e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12321.31997193889 (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 : 1.94 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.26 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.1%)
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 | 7.357e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12172.411061499244 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.279e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12179.838443087876 (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.07 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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,5.551115123125783e-17,0)
sum e = 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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12207.482118892949 (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.52 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.376e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11782.423159911063 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12353.411068813213 (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 : 1.71 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11883.234015760818 (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 : 1.97 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 168.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.2%)
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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11532.424026889079 (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 : 1.74 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12024.133198875374 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 142.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11574.089049319891 (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 : 1.99 us (1.3%)
patch tree reduce : 570.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 149.12 us (95.6%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11361.612968347628 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.2%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11366.886540653077 (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 : 1.91 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.225e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11126.617861472701 (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 : 1.87 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.78 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 6.938e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11476.041187156474 (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.01 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11450.165168379332 (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.50 us (1.6%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 147.67 us (95.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11288.004914613817 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 146.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10860.519615240035 (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 : 1.80 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.8%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10843.514051231688 (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 : 1.73 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.35 us (96.1%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (59.6%)
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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10357.428481815712 (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 : 1.98 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 145.14 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10753.927244586659 (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 : 1.62 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10357.273181352351 (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 : 1.66 us (0.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 178.19 us (96.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 7.411e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9982.413915725587 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10313.133695393964 (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.23 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.7%)
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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10070.707064762411 (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.04 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10284.19710378067 (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 : 1.94 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 178.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 | 7.330e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9746.273590666793 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10261.695556480983 (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 : 1.94 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (54.5%)
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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9834.133742490527 (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.32 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.44 us (95.8%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 7.444e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9356.647635595073 (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 : 1.83 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 189.15 us (96.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.5%)
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 | 7.636e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9045.077627013221 (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 : 1.95 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 211.85 us (96.9%)
LB move op cnt : 0
LB apply : 1.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (68.1%)
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 | 7.555e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9067.437897165415 (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 : 1.97 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 177.52 us (96.4%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (70.0%)
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 | 7.395e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9188.662881977023 (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 : 1.88 us (1.1%)
patch tree reduce : 761.00 ns (0.5%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.31 us (87.4%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9549.344673278516 (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 : 1.93 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.26 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9181.299263528246 (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.08 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.64 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9332.689137292062 (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 : 1.68 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.4%)
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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9101.276586681113 (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 : 1.81 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9251.900141480093 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8938.118059394537 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9493.495234777376 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.96 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.1%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9390.0440543917 (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 : 2.08 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8919.394336846935 (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 : 1.76 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8752.159550099395 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.16 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.4%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8840.839533755356 (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 : 1.78 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8567.776149290195 (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 : 1.71 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 571.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 140.15 us (95.6%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8616.615551297258 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.475e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8184.324029240166 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.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 = (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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8347.933713764642 (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 : 1.93 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8280.971405228782 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.383e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8119.445092154119 (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.02 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 172.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8277.247573869678 (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 : 1.91 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (66.3%)
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 | 7.223e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8191.72195529872 (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.02 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.2%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8300.985644277831 (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.31 us (1.5%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (55.5%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8278.884675517216 (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.00 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.0%)
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 | 8.767e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6622.303180768907 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.9%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8166.358393680836 (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 : 2.15 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 176.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (69.3%)
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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7944.18956602305 (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 : 1.77 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.65 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (53.4%)
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 | 6.969e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8180.491478737191 (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 : 1.99 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 146.63 us (95.0%)
LB move op cnt : 0
LB apply : 1.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (52.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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7920.440394111082 (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 : 1.88 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7755.589932076656 (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.09 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7737.244136509221 (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.06 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7755.426883115812 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7656.352131569212 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.72 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7923.860485324951 (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 : 1.89 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.79 us (96.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.5%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7646.900493753595 (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 : 2.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7856.029478753702 (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.07 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.3%)
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 | 6.866e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7900.04665647572 (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 : 1.70 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.328e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7364.2460418227465 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.8%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7631.490592207048 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7634.758900499909 (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 : 1.64 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.79 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7651.436968669458 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.05 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7589.0955130883385 (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 : 1.90 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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 = (-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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7437.388444832221 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7695.3232512683135 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7625.861136984108 (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 : 1.90 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7374.028715099511 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.5%)
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 | 7.386e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7004.003990640628 (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.01 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (66.3%)
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 | 7.052e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7304.861495944136 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.49 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.354e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6975.899090874542 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7155.242829166198 (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 : 1.75 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.40 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.7%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6962.974789571878 (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 : 1.96 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.05 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.413e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6837.144553687592 (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 : 1.68 us (1.1%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7196.050487866528 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.1%)
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 | 6.790e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7406.946230293154 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.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 = (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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7007.451170092396 (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.05 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 165.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7009.163998838608 (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.13 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.5%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6880.2320313548935 (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.12 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.9%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7088.264412196831 (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 : 1.93 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (68.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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6828.505332274049 (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 : 1.96 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.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 = (-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 | 7.684e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6408.924651279207 (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 : 1.93 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.47 us (88.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.8%)
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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6773.845658618904 (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 : 1.76 us (0.8%)
patch tree reduce : 331.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 218.93 us (97.4%)
LB move op cnt : 0
LB apply : 1.01 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 8.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6091.7880228383065 (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 : 1.82 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.5%)
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 | 7.591e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6426.023790497032 (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.23 us (1.3%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.413e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6561.039457980927 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.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 | 7.381e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6569.944626904625 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 7.309e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6615.1767444122 (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.21 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.71 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6658.807852372195 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6650.249091610233 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.389e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6491.124320259782 (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 : 1.74 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6633.464764834909 (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.01 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6833.998412554386 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6946.2974177630485 (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.07 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 146.87 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6610.355969980923 (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 : 1.94 us (1.1%)
patch tree reduce : 580.00 ns (0.3%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 163.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.5%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6687.703555349947 (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 : 1.76 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6836.086869219282 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.1%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6688.622644879654 (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 : 1.92 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (71.9%)
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 | 7.465e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6306.960681038698 (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 : 1.99 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6667.212633406306 (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.34 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 146.34 us (95.4%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.073e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6630.363040818866 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 145.05 us (95.9%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6701.19473238588 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6827.728812795492 (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 : 1.88 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.29 us (95.9%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6656.162611549994 (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.04 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 146.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6771.5634121122675 (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 : 1.98 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 176.24 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6415.709499245245 (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.17 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 181.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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 | 7.512e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6180.083782063839 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.5%)
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 | 7.191e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6446.848712109095 (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 : 1.80 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.79 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6373.826397469978 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 7.402e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6245.697869311457 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6291.072128668283 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6547.853876725464 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (59.8%)
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 | 7.539e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6110.330806764223 (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.08 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.1%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6336.230004899392 (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 : 1.90 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6538.719697118064 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.74 us (95.7%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.4%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6547.883626683237 (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 : 1.87 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6540.848427657732 (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.03 us (1.2%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.17 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.8%)
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 | 7.345e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6242.440645530448 (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 : 1.85 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6440.874044510823 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.7%)
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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6399.304462642012 (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 : 1.72 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.97 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.59 us (95.9%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6416.737000046728 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.12 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.9%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6514.439892190701 (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 : 1.95 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6302.764287764993 (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 : 1.94 us (0.5%)
patch tree reduce : 370.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 347.69 us (98.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (66.1%)
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 | 9.177e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4978.426456569568 (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 : 1.87 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.360e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6205.062617543777 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (-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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6494.979376506854 (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 : 1.89 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 7.519e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6069.993917265645 (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 : 1.94 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.393e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6172.153091986594 (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.07 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6266.382775499736 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.3%)
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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6619.170311569826 (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.05 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 153.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6402.406706645236 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 | 6.908e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6603.289615236893 (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 : 1.84 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 181.75 us (96.5%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.5%)
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 | 7.355e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6202.775250903105 (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.03 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 7.413e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6154.448789710366 (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 : 1.76 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.296e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6254.417961347091 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (69.5%)
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 | 7.259e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6287.988819145786 (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.07 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 153.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6411.608794002517 (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 : 1.83 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.396e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6174.507236288417 (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 : 1.77 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6471.898589420189 (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.02 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6380.801357855105 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.9%)
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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6254.091375345717 (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.49 us (1.5%)
patch tree reduce : 721.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 611.00 ns (0.4%)
LB compute : 156.95 us (95.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (60.7%)
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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6349.336508766019 (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 : 1.97 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 460.00 ns (0.3%)
LB compute : 145.01 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6694.700999413392 (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.00 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6685.301967120494 (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.15 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.7%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6534.361377733489 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (-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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6532.583781238835 (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 : 1.63 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.99 us (96.2%)
LB move op cnt : 0
LB apply : 922.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.9%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6461.539851057107 (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 : 1.95 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6308.496092727878 (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.11 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6381.031077051892 (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 : 1.82 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 = (-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 | 7.299e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6306.187360046787 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6539.465564248034 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.50 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6425.695151100321 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6703.563273577377 (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 : 1.98 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.10 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (0,0,0)
sum e = 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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6578.649487609284 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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,0,0)
sum e = 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 | 6.920e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6686.360656350328 (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 : 1.93 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 173.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6446.805577377782 (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 : 1.71 us (0.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 176.15 us (96.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.7%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6405.298550013475 (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 : 1.87 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.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,2.7755575615628914e-17,0)
sum e = 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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6463.444548715746 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6457.756274919876 (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 : 1.99 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 166.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.9%)
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 | 7.335e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6348.765778816539 (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.27 us (1.4%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.91 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (67.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 = (-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 | 7.362e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6333.808231855413 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6615.448480817589 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.31 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (-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 | 7.471e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6260.317503438508 (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 : 1.75 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.79 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.8%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6637.440715356885 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6789.772972624471 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.96 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6764.881875346775 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.11 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (59.3%)
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 | 6.987e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6735.879652891273 (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 : 1.90 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 178.35 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6544.503794596736 (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 : 1.87 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.1%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6625.107106340786 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6743.32732548962 (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 : 1.74 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.10 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.9%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6764.975649115424 (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 : 1.74 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.64 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (0,0,0)
sum e = 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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6771.553136381126 (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 : 1.88 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 148.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6628.535023195131 (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 : 1.93 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.16 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 7.098e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6714.410572422865 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 142.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6786.1932735256005 (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.17 us (1.5%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6991.091315169489 (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.07 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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 = (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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6696.7066869402 (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.07 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.065e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6799.771669522355 (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 : 1.72 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (69.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 = (-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 | 7.135e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6746.985420826652 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.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 = (-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 | 7.136e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6760.125088898181 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.3%)
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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6695.704616952954 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.321e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6618.12571865403 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 7.235e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6710.687406011348 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.07 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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 | 7.332e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6636.617051024744 (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 : 1.93 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (61.2%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6839.16994403638 (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 : 1.96 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (54.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,0,0)
sum e = 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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7108.256523707036 (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.02 us (1.3%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 145.15 us (95.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7139.259472469787 (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.01 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7200.212739287099 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.74 us (96.5%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.8%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6987.765209190551 (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.10 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.40 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6980.004356744139 (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.12 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.42 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6977.844552509127 (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.02 us (1.3%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.85 us (95.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6950.0682223498 (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.01 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 162.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 9.783e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5081.423063698088 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.7%)
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 | 7.310e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6817.613217823087 (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 : 1.98 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6803.975650750654 (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 : 1.79 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 151.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 7.302e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6859.580380451538 (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.00 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7048.053877291384 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6990.890723007255 (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 : 1.79 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7014.958097911506 (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.06 us (1.4%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 6.954e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7278.541712796202 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7242.626221662576 (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.07 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 = (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 | 7.275e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6994.335472181508 (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 : 1.94 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (63.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 = (0,0,0)
sum e = 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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7222.453362160455 (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 : 1.94 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7176.502176479844 (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.03 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.45 us (95.7%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7301.2247023964355 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7198.776014008094 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.51 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.2%)
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 | 7.385e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6984.745293814054 (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 : 1.89 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.90 us (95.7%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7173.649134833682 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.5%)
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 | 7.279e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7126.354021477674 (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.04 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.5%)
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 | 7.425e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7006.288579379551 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.1%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7232.283613025465 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7694.983679820625 (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.07 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7172.133936546123 (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.13 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.8%)
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 | 6.913e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7612.227406927032 (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 : 1.64 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7519.023600657327 (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.14 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7418.6267024271365 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.46 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7367.391192989968 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.88 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.6%)
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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7375.0816718809265 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7307.594203640879 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7584.296101793934 (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 : 1.79 us (1.0%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7425.469434812549 (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 : 1.97 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7641.280943472146 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.26 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7905.895474431275 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7849.091313148102 (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.12 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7694.157903123594 (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 : 1.88 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.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 = (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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7669.213702455272 (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 : 1.74 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.02 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (65.3%)
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 | 7.398e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7393.719499169138 (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 : 1.91 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.92 us (95.5%)
LB move op cnt : 0
LB apply : 1.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (-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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7758.4417152691 (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 : 1.97 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.16 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.9%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7610.415598696132 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 491.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.09 us (95.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 7.296e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7566.090653567161 (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 : 1.91 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.4%)
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 | 7.269e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7617.185128691426 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7875.13607217731 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8199.282571158074 (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.29 us (1.5%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 480.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 145.17 us (95.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (68.2%)
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 | 6.858e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8148.59146255655 (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 : 1.86 us (1.1%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 158.94 us (95.5%)
LB move op cnt : 0
LB apply : 1.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7886.7802664122455 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7978.666216960973 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.04 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.0%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8050.188716551533 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.46 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8047.209090948496 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 7.016e-04 | 2.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8087.961874287227 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7949.542960727572 (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 : 1.90 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.77 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8072.795705604964 (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 : 1.91 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7820.331311158582 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.6%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8167.719352115466 (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 : 1.93 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.60 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8119.070183582017 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.409e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7801.7525104818305 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.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 = (-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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8407.419609678425 (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 : 1.81 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.20 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8268.335536079137 (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.13 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8285.1468344362 (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 : 1.91 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 7.353e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7958.371570483742 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.32 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.298e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8043.468137611563 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8104.021670828823 (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 : 1.76 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 7.269e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8124.878084469818 (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.34 us (1.4%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.79 us (95.8%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.600e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7795.241788963032 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8267.064923570806 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8623.068015548864 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.4%)
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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8715.345773316096 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8464.000752592141 (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 : 1.80 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.29 us (96.3%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8496.340129338581 (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 : 1.89 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.079e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8521.236099865384 (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.06 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.51 us (96.0%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 = (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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8557.519863289983 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8339.107232748553 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (-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 | 8.632e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7051.380489754363 (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 : 1.91 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.50 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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.084e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5630.245611920063 (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 : 1.77 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.9%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8379.13431671715 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8451.818828674523 (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 : 1.88 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 154.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8537.713529367866 (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 : 1.68 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.73 us (96.3%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.5%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8715.891489681953 (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 : 1.92 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8771.743375011707 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.24 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8501.032191847045 (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 : 1.88 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8826.11206332564 (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.13 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 7.004e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8919.757299267696 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9188.350506067149 (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.42 us (1.6%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.33 us (95.6%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8984.517466219506 (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 : 1.79 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.15 us (96.5%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8856.854950583223 (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 : 1.69 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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 = (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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9075.732897907223 (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 : 1.72 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.00 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.366e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8601.196326157877 (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 : 1.91 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8834.315146935744 (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 : 1.92 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 159.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.225e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8817.556616889686 (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 : 1.91 us (1.0%)
patch tree reduce : 631.00 ns (0.3%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 181.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.693e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8303.460340157093 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8866.117380619997 (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 : 1.93 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.381e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8701.369915893938 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.142e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9015.980822021458 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9335.958554322766 (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.66 us (1.7%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 145.34 us (95.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.4%)
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 | 6.888e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9396.91681413628 (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.15 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 153.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9388.72563740058 (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 : 1.73 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.66 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (62.0%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9139.874201944 (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 : 1.74 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9290.92827421237 (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 : 1.81 us (1.2%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (57.8%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9121.99435307397 (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.11 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.44 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.366e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8899.567374752281 (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 : 1.81 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9242.225285911325 (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 : 1.73 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9143.131371325655 (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 : 4.80 us (3.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.69 us (94.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (55.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.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 | 6.976e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9465.891159859191 (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 : 1.94 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9572.246346726235 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.37 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9644.392124056549 (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.03 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.60 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9325.697317103453 (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 : 1.73 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 170.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.455e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8941.930549972612 (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.01 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9566.707188867049 (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 : 1.73 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 143.50 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.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 = (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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9310.911090998086 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.21 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9305.26558180826 (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 : 1.72 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9534.30786563778 (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 : 1.98 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.1%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9580.63707618752 (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 : 1.76 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9495.920314682518 (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 : 1.86 us (0.5%)
patch tree reduce : 350.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 400.50 us (98.5%)
LB move op cnt : 0
LB apply : 1.00 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (59.2%)
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 | 9.736e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6952.963526584431 (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 : 1.93 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9442.33347595044 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 7.576e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8973.311924987707 (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.32 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9301.65649756762 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (-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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9605.167695375865 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9989.26978394215 (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.06 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.997e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9792.552820603005 (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.09 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10056.48808281481 (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 : 1.83 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.89 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9407.037440142807 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.477e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9215.418673992588 (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 : 1.94 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 611.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.09 us (95.7%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (67.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 | 7.321e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9428.319717645452 (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 : 1.73 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9744.831881319416 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.5%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9818.04028418502 (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 : 1.73 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9776.921974954523 (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.62 us (1.5%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.491e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9278.32000566721 (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 : 1.94 us (1.3%)
patch tree reduce : 541.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.77 us (95.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9841.936827070844 (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.07 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9617.51310326916 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.90 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.1%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9773.543364092338 (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 : 1.81 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.0%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9909.213893944121 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10077.326322671677 (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.50 us (1.6%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.01 us (95.3%)
LB move op cnt : 0
LB apply : 1.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.817e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10291.497681567253 (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 : 2.45 us (1.6%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.4%)
LB compute : 145.94 us (95.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10253.457026708069 (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.08 us (1.2%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.3%)
LB compute : 160.60 us (95.5%)
LB move op cnt : 0
LB apply : 1.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.8%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9928.409591498343 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.8%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10002.082668174742 (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.04 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.320e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9636.387097567835 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9789.494378364505 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9731.423904297395 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.487e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9457.083963442667 (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 : 1.83 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10032.314842582613 (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.27 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.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 | 7.229e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9816.583246296545 (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.04 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9886.217413578232 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.8%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10027.186695421642 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.7%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10208.624498844727 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.0%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10412.728217343049 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9948.618513629557 (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.05 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10103.113591610323 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.4%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9835.127841652273 (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 : 1.76 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.3%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10092.261206335785 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10233.396202203214 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10237.370422943983 (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.20 us (1.5%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.05 us (95.7%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.375e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9718.71856906335 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10404.544173932418 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9799.715391460464 (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 : 1.93 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10141.664248006193 (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 : 1.74 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.4%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10028.368047910737 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10188.56266281343 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (57.6%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10057.559123397657 (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.17 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.5%)
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 | 7.638e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9419.64388075779 (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.32 us (1.5%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.36 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.8%)
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 | 7.072e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10177.701576301475 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.24 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.9%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10373.39105086346 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10235.559602291856 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.72 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10319.083241425855 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 6.782e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10625.994229847323 (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.05 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.03 us (95.5%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.930e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10400.058724847508 (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 : 1.81 us (1.0%)
patch tree reduce : 771.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 178.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.366e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9785.998285548614 (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 : 1.86 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9817.617779469312 (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 : 1.81 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 7.336e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9827.680179306177 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.6%)
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 | 7.376e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9775.240624876356 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9986.793340752021 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (-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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9940.487192898214 (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 : 1.87 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (71.1%)
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 | 7.427e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9705.95915374928 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.2%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10071.620278135397 (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 : 1.74 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.05 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (58.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 = (-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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10035.065871705337 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.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.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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10447.145312977713 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10388.385336178804 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.9%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10251.652606032687 (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.04 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 163.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9956.24117804896 (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 : 1.72 us (1.0%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 159.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (60.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 = (-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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10317.40070267778 (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 : 1.66 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.02 us (96.2%)
LB move op cnt : 0
LB apply : 922.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (62.5%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9990.819314206554 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.37 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (56.8%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10215.801416943334 (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.11 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.22 us (95.7%)
LB move op cnt : 0
LB apply : 1.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (73.4%)
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 | 7.393e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9720.321442391683 (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.06 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (68.0%)
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 | 7.481e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9600.991577813671 (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.40 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 156.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (53.3%)
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 | 7.344e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9774.419751586083 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 143.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10170.840763139564 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10202.517394659948 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.7%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10495.133431643564 (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 : 1.97 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 149.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10003.951245557946 (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.06 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10032.701824926618 (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 : 1.80 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (69.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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10031.181969213192 (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 : 1.69 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.75 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10063.369666896397 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10225.246498887884 (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 : 1.66 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10116.901917700725 (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 : 1.71 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.47 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10352.848595590565 (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.07 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (57.9%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10086.704240619452 (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 : 1.92 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10042.434754470203 (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.06 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.87 us (95.7%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10118.679509999602 (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 : 1.98 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 147.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10329.7393056777 (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 : 1.62 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.1%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10136.193213254139 (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 : 1.92 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9775.429200120503 (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 : 1.95 us (1.2%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (59.4%)
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 | 7.334e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9637.647296452056 (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 : 1.86 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.49 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9640.694653638462 (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.15 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 154.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 = (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 | 7.252e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9722.403241838927 (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 : 1.70 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9826.222060175014 (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 : 1.89 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.392e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9511.993501300063 (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 : 1.90 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.437e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9441.815896127713 (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 : 1.97 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9990.263673347696 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.32 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10204.67303906587 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.816e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10256.765303044984 (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.10 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9888.174827282837 (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 : 1.79 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9847.582716776838 (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 : 1.65 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.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 = (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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9557.86761747307 (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.13 us (1.4%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 551.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.42 us (95.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9691.06250593606 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9616.147673208045 (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 : 1.88 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9914.000329685317 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 = (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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9839.90438358562 (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 : 1.96 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9402.830706853274 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.93 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.933e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9935.702505543983 (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 : 1.90 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.11 us (95.5%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9795.557702894082 (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.07 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10038.140337119521 (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 : 1.69 us (1.0%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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,-1.3877787807814457e-17,0)
sum e = 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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9526.228163870615 (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 : 1.81 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.244e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9438.944770436075 (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 : 1.73 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.612e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8965.712216114736 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.4%)
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 | 7.337e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9283.660885406834 (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 : 1.77 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9410.353110734566 (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.23 us (1.4%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.4%)
LB compute : 146.58 us (94.7%)
LB move op cnt : 0
LB apply : 1.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (60.1%)
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 | 9.755e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6954.984985924573 (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 : 1.72 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9372.074314951424 (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.14 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9428.756010879488 (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 : 1.73 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.48 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9513.231837613395 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9656.093236149749 (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 : 1.87 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.67 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.284e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9217.391638799285 (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 : 1.96 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.15 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9686.82504782046 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.760e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9889.649665381157 (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.57 us (1.7%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.86 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.0%)
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 | 6.964e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9577.787713302445 (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 : 1.69 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 = (-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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9102.465362119192 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.26 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9176.21754458023 (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.05 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (65.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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9155.723961390131 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 140.93 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.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 = (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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9454.604452914546 (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 : 1.89 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.92 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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,1.3877787807814457e-17,0)
sum e = 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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9387.620177566341 (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 : 1.77 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.81 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 7.362e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8936.301517284042 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9323.449643325795 (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 : 1.92 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 = (-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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9315.14273805606 (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.04 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9599.389783875678 (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.27 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.69 us (95.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9452.47676833893 (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 : 1.79 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 202.67 us (96.9%)
LB move op cnt : 0
LB apply : 1.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.427e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8752.475282788082 (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 : 1.66 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.2%)
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 | 7.317e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8863.005410668402 (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 : 1.90 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.8%)
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 | 7.259e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8910.827473918096 (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 : 1.71 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.279e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8864.511182055401 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9141.086228316577 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.28 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 = (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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9086.317983318211 (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 : 1.96 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 = (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 | 7.274e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8803.662260527155 (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 : 1.75 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.44 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8845.324268388791 (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 : 1.78 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 176.86 us (96.6%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8723.710920267175 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9139.326595729708 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.50 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9294.148478906694 (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 : 1.86 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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.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 | 7.205e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8773.264885425118 (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 : 1.81 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8934.654410671235 (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 : 1.73 us (1.0%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 165.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.6%)
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 | 7.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8409.32648978438 (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 : 1.84 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.55 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8798.055363438418 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8688.716832768261 (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 : 1.77 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.26 us (96.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.4%)
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 | 7.368e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8466.802552425625 (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 : 1.92 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.9%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8712.960089367964 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.027e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8829.218121933474 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.827e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9063.620329069488 (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.26 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8595.014848500983 (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.03 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.4%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8775.25063368436 (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 : 1.73 us (1.0%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8743.01578340342 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 = (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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8578.803073231282 (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.09 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.377e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8274.516297264418 (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 : 1.98 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 171.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.520e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8095.588345719276 (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 : 1.83 us (1.2%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.64 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8581.431918763781 (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 : 1.69 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.22 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8495.212287511144 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8622.361237816118 (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 : 1.87 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (76.1%)
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 | 7.412e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8123.325129291832 (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 : 1.91 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.85 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.7%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8563.687808978224 (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.28 us (1.5%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 145.81 us (95.4%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8573.295437923538 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.92 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.739e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8860.963437915741 (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 : 1.90 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8502.092846427073 (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 : 1.64 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 177.35 us (96.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.3%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8307.83521323498 (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.09 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 164.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8364.290747164821 (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 : 1.65 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.52 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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 = (-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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8245.514511087005 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.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.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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8200.819279387804 (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 : 1.81 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.06 us (96.1%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8326.332760022653 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.0%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8386.233566414716 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.41 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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,0,0)
sum e = 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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8408.59943530139 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8500.322930644616 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.9%)
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 | 6.792e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8552.605128767676 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.76 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8315.253631440275 (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 : 1.74 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7852.134302236632 (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 : 1.79 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 168.58 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.225e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7975.577477744848 (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 : 1.72 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (66.8%)
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 | 7.405e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7760.2957580833045 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.400e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7744.73999019265 (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 : 1.71 us (1.0%)
patch tree reduce : 581.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.81 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.165e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7976.799672542945 (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 : 1.94 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8064.257139087702 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8122.5508349583415 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.5%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7916.053367215113 (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 : 1.77 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 178.22 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.5%)
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 | 7.391e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7651.5711989442425 (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 : 1.97 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.13 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.8%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8082.598122087136 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.96 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8081.091841366631 (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 : 1.72 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7927.567305846021 (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 : 1.64 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.69 us (96.5%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7966.394382280891 (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 : 1.89 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.12 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.9%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7927.737369868506 (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 : 1.68 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.85 us (96.3%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7920.581041828997 (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.00 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.94 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.314e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7593.478820537773 (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.00 us (1.3%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 500.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.93 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7856.779112776348 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.38 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7948.796501783867 (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 : 1.79 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.00 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7821.481364791195 (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 : 1.93 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.6%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7834.419653453935 (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.15 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.67 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.9%)
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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7963.47262595307 (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.10 us (1.1%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 177.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (69.2%)
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 | 7.346e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7449.24062471445 (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 : 1.87 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7679.084849148351 (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 : 1.77 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.70 us (95.8%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 7.494e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7267.090312380893 (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 : 1.94 us (1.3%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7553.858673869389 (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 : 1.65 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.45 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7489.033273722996 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7543.288044582189 (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 : 1.83 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.0%)
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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7517.494791100455 (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.07 us (1.4%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.06 us (95.5%)
LB move op cnt : 0
LB apply : 1.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7703.72192399463 (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.09 us (1.4%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 560.00 ns (0.4%)
LB compute : 146.06 us (95.6%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7693.855500762101 (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 : 1.92 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.3%)
LB compute : 147.11 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7850.021651261524 (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 : 1.78 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (62.3%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7714.7423291773675 (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.00 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.15 us (89.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7392.259008574241 (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.13 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7525.201697017245 (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 : 1.87 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7475.791064297196 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 7.334e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7231.735661949564 (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 : 1.68 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 7.009e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7551.159232974232 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7439.013618730863 (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 : 1.78 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7554.589605596583 (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.04 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.761e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7782.472242703274 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (61.1%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7538.45514362454 (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 : 1.70 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.93 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7415.375110802108 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.12 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7460.8143067812525 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.98 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (56.4%)
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 | 7.353e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7103.994816611956 (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 : 1.90 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 = (-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 | 7.525e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6928.953751105973 (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 : 1.91 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.444e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6993.132192600628 (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.29 us (1.4%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.3%)
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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7160.341707369637 (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 : 1.68 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.1%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7349.678820858898 (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.00 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.63 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7393.039271345589 (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 : 1.74 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.94 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7406.25462997832 (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 : 1.94 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7511.535077712901 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7268.057563814861 (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.02 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.66 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7342.093478397899 (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 : 1.73 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6980.662058278523 (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 : 1.65 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7293.414773523079 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.70 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.099e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7225.28271129327 (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 : 1.70 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.7%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7206.60499212408 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.6%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7421.792590268733 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.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 = (-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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7014.56028144976 (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 : 1.76 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7494.640331021802 (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 : 1.82 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 158.64 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.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 | 7.123e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7160.863533586208 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.62 us (95.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7029.856881396339 (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 : 1.75 us (1.1%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.3%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7160.6047137372725 (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 : 1.72 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.33 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7241.917612126259 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7309.809022984967 (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 : 1.74 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.78 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7212.223763863356 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7183.542488383785 (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.18 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.47 us (95.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.057e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7187.151005528482 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (55.1%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7196.081547167458 (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.36 us (1.5%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.28 us (95.6%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.5%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7057.68725553305 (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.10 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 170.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (-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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6988.336217219874 (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.01 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
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 = (-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 | 6.909e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7326.376041660777 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7038.009057181611 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7233.7601571455225 (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 : 1.91 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 159.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.4%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7112.397780691113 (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 : 1.73 us (1.2%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 141.32 us (95.7%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7017.601969990785 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7148.230580883371 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.8%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7243.849245842689 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.186e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7035.939412052102 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.38 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7112.024026664806 (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.58 us (1.7%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 143.31 us (95.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7394.725107325652 (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.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.77 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7407.352722956091 (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.11 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (58.2%)
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 | 6.877e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7357.854347870889 (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 : 1.69 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7300.146943551869 (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 : 1.71 us (1.1%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 143.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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,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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7064.84336493943 (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 : 1.79 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6995.893125195473 (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 : 1.78 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.89 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.0%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7219.28525378327 (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 : 1.72 us (1.0%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.291e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6957.447261229764 (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 : 1.98 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6964.222616252166 (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 : 1.89 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,-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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7165.720502281347 (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.01 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7036.31230019705 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.99 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7177.599460830943 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7413.0165826878565 (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 : 1.69 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7157.446083227112 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 145.54 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7070.523563000577 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.32 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7034.585720764358 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (-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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7251.774051671192 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.351e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6974.305519328799 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.6%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7215.5225891064165 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.3%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7323.24177545598 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7475.119236713237 (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 : 8.42 us (5.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.91 us (92.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.8%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7375.069932641383 (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.09 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7321.980074012947 (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 : 1.72 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (67.0%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7288.105722837478 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7380.761323784539 (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 : 1.69 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7325.9057749300155 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.32 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7381.990050645906 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7195.067156287695 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.75 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7458.618903976834 (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.06 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 7.625e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6885.15625106624 (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.01 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7242.73043222617 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7650.157511109814 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (64.7%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7462.98724843326 (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.37 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.10 us (95.6%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7500.776288310546 (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.02 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7349.663173640945 (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 : 1.87 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7434.962405164095 (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 : 1.75 us (1.1%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.27 us (95.8%)
LB move op cnt : 0
LB apply : 1.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.4%)
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 | 7.404e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7230.776114204273 (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 : 1.95 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7679.03194367022 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.03 us (95.7%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.7%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7624.798706499459 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.43 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7681.813948207873 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.54 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.4%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7640.098789702085 (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.06 us (0.9%)
patch tree reduce : 330.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 232.13 us (97.2%)
LB move op cnt : 0
LB apply : 1.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6806.179513591321 (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.22 us (1.5%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 145.15 us (95.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (70.0%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7920.23479934216 (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 : 1.93 us (1.3%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 145.26 us (95.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7801.081086319483 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8082.260239399524 (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.05 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 202.94 us (96.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.3%)
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 | 7.483e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7385.7178079462465 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7931.080754814423 (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 : 1.63 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.93 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7920.220332136268 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7933.5744327833745 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.5%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7831.840322096389 (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 : 1.79 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 169.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.531e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7492.110502906273 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.1%)
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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7865.22807554613 (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 : 1.80 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7963.252100222978 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8069.06073722142 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8336.182229665896 (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.13 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (55.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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8463.189577109659 (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 : 1.71 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.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 = (-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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8335.90648460402 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (64.1%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8085.029191221766 (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 : 1.64 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8190.050458877342 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8358.325280135165 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.308e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8099.908032980051 (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.12 us (1.4%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8133.24988775928 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8624.793669506756 (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 : 1.93 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.0%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8632.542233823446 (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.01 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.9%)
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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8394.109948467049 (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.66 us (1.6%)
patch tree reduce : 510.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.323e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8301.089355230046 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8519.197810631409 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.5%)
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 | 7.074e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8689.274103779977 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 151.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8922.679126099996 (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 : 2.16 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.02 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9069.231241678834 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8812.048133202881 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (63.6%)
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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8712.219462695803 (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 : 1.69 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8978.818014689134 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.6%)
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 | 7.178e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8863.371801077394 (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 : 1.97 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 | 7.268e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8804.429716744171 (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.01 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 156.82 us (95.8%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.422e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8672.838156845866 (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 : 1.94 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8953.031878615715 (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 : 1.87 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.23 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9447.10988760486 (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 : 1.86 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.5%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9348.789744522514 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 6.882e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9577.361967902694 (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 : 1.67 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.38 us (96.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (63.3%)
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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9262.54324206747 (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.28 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9418.287795108936 (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 : 1.65 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.41 us (96.4%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.9%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9462.05554975734 (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 : 1.62 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9357.426556982036 (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 : 1.72 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (56.3%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9450.837565068136 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9582.568029667265 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.87 us (95.5%)
LB move op cnt : 0
LB apply : 1.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9838.364516875028 (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 : 1.97 us (1.3%)
patch tree reduce : 721.00 ns (0.5%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.45 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (60.3%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10010.897358652232 (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 : 1.84 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.55 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10158.001158706888 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10067.392338696023 (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 : 1.98 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10054.96837500315 (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.17 us (1.5%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.77 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (65.2%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9751.037358910478 (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 : 1.99 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (68.4%)
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 | 7.378e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9636.034750652247 (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.16 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 153.87 us (95.6%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9936.619601628337 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10044.651282427516 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10374.285976100364 (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 : 1.66 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 143.45 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10201.878299236289 (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 : 1.83 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.40 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10565.632242299886 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10629.91158644504 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.9%)
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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10700.476536463006 (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 : 1.99 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 420.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 175.26 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (69.2%)
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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10152.38636288186 (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 : 1.80 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 189.41 us (96.8%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.6%)
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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10195.076545536773 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10511.362907219771 (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 : 1.66 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.9%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10676.743257386006 (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 : 1.65 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10830.67975829786 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10558.266635567565 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 = (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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10606.77595110705 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.559e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10164.553735892343 (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 : 1.89 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.95 us (95.7%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10790.152588659064 (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 : 1.92 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.7%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10845.514837911644 (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 : 1.91 us (1.3%)
patch tree reduce : 550.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.43 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (57.9%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11350.561945829892 (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 : 1.68 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.62 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11248.5186483107 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 148.34 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.3%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11173.625977573285 (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 : 1.69 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11156.016364508108 (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 : 1.82 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11127.363307524272 (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 : 1.75 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.36 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 7.545e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10554.18293862771 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10949.744591074203 (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 : 1.88 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 7.291e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11012.916733091079 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (78.7%)
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 | 6.864e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11745.842440938744 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 6.949e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11649.459283419012 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.9%)
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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11593.961397459414 (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 : 1.72 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 163.43 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11479.697264956132 (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 : 1.66 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11706.610079340244 (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 : 1.64 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11749.735855983727 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11789.31198367587 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11403.93174069787 (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 : 1.72 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.6%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11499.690231540262 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.75 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11667.945994136862 (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 : 1.92 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.53 us (95.7%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11649.802493088597 (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.11 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.34 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 = (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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11868.332708092335 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (56.6%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12092.561841880557 (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.10 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 174.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 = (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 | 7.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10879.483213940464 (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 : 1.82 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 167.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11749.136471319092 (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 : 1.76 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (72.2%)
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 | 7.202e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11839.42752823237 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (60.3%)
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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12060.207889517895 (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.12 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 146.06 us (95.2%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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.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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12104.102594146743 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.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 = (-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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12269.220858903209 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.59 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 = (-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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12305.690210899758 (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.13 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.79 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.0%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12466.774819222801 (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 : 1.72 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 142.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.734e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12917.20878708483 (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 : 1.85 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.13 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 6.806e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12821.051513098637 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12831.5780455477 (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 : 15.06 us (7.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 171.61 us (89.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 7.442e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11799.88248745352 (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.37 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 171.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.355e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11977.116365073989 (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 : 1.72 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12519.936235742864 (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 : 1.69 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.86 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12630.044030619278 (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 : 1.73 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.291e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12192.272592572812 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.75 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12781.49183422031 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12748.153614176314 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12582.269684207517 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12882.908452654156 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12761.648349300785 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13123.179340788109 (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 : 1.93 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 175.24 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.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 | 7.669e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11825.838629731696 (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.05 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12666.050089434888 (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 : 1.77 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.08 us (87.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12838.09366513528 (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 : 1.78 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.47 us (96.1%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (56.5%)
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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13062.653641744664 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.31 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12885.283557363347 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13068.578950788811 (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 : 1.72 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12838.470799802792 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.6%)
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 | 7.085e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13034.118938663953 (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 : 1.85 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13062.97886725142 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.806e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13632.582887813309 (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 : 1.96 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13491.900134370766 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.4%)
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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13136.476572434054 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.12 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13047.846771267208 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.67 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.021e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13334.396039970852 (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 : 1.76 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (61.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 = (-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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13083.566049035135 (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 : 1.75 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 143.43 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.9%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13179.030227851781 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13499.675094634069 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.93 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 6.764e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13955.08579622469 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 149.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13768.033945974534 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13826.368656063605 (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 : 1.74 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 173.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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 = (-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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13321.873854988822 (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.19 us (1.5%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.25 us (95.7%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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,0,0)
sum e = 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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13585.642033007918 (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 : 1.84 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 149.18 us (96.2%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 7.372e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12920.605660278294 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.703e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12386.178374078892 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.420e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12879.171306396354 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 7.279e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13148.852944895572 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.28 us (95.7%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 7.442e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12879.061438896677 (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 : 1.97 us (1.3%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.80 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13290.217180792635 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (58.6%)
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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13817.360434252292 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.74 us (95.9%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.725e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14309.517902195 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 6.899e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13964.994845604182 (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.06 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13526.312946322028 (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 : 1.73 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (73.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.380e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13084.508869884861 (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 : 1.79 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 143.86 us (95.8%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13565.61973176401 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.46 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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-17,0)
sum e = 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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13755.446275303399 (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 : 1.71 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.94 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13613.71128480948 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 147.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13910.583727188665 (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 : 1.85 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13632.350519667183 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 = (-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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13820.005305554303 (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.07 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.761e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14363.652711344208 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.05 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 6.960e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13961.698173704453 (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 : 1.73 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 174.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13578.597398173732 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.32 us (87.4%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13716.18494238887 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13845.577871366524 (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 : 1.89 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.403e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13144.390836907272 (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 : 1.76 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (70.4%)
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 | 7.497e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12981.809285300786 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13405.612389458338 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 145.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13922.795422135066 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.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 = (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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13914.767257183066 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.64 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13491.020184853187 (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 : 1.90 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14249.61403634002 (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 : 1.90 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14311.6322336272 (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 : 1.73 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14002.909296659667 (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 : 1.74 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.36 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.7%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13831.356324160559 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.79 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13827.136965350235 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13514.717001618637 (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 : 1.99 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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,-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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13383.967120760923 (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 : 1.76 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13860.05809134616 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13496.685807919675 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.915e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13997.074609124049 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.7%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13808.257007685446 (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 : 1.92 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 204.88 us (96.8%)
LB move op cnt : 0
LB apply : 1.43 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.3%)
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 | 7.545e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12802.674732270038 (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 : 1.91 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.90 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13477.843157237121 (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 : 1.68 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13732.429462260694 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.1%)
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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13450.203028929029 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.36 us (93.3%)
LB move op cnt : 0
LB apply : 2.71 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 7.248e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13261.618582755278 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.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 | 7.567e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12683.002124929159 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.269e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13182.875902374748 (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 : 1.93 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.94 us (95.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13607.709078811407 (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 : 1.74 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13422.087070997022 (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.01 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.16 us (95.6%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14065.733714220834 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13885.962130673543 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.79 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13780.154479121808 (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 : 1.81 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 183.32 us (96.6%)
LB move op cnt : 0
LB apply : 1.36 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.5%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13110.841429330572 (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 : 1.88 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13314.146928769342 (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 : 1.90 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 146.08 us (95.4%)
LB move op cnt : 0
LB apply : 1.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (58.9%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13506.447449125188 (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 : 1.75 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12926.701514978813 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.1%)
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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13159.840659661859 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.32 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.337e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12777.00192625336 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13374.42328285133 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13211.191664312244 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12843.92078012254 (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.21 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.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 = (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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13426.994049346575 (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.16 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 161.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.8%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12734.798845224774 (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 : 1.77 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13169.096946997373 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13067.369006643545 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.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 = (-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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13022.341097406332 (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 : 1.80 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.85 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12668.621184751479 (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 : 1.98 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12640.277105595344 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12783.459185310123 (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 : 1.82 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 179.17 us (96.5%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.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 | 7.420e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12203.94592589066 (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 : 1.74 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.82 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.1%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13117.669987740004 (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.10 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 176.74 us (96.3%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.435e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12097.589881679329 (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.16 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.58 us (95.7%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12814.32450983578 (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.23 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.923e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12900.971107393254 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12646.503656765679 (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 : 1.74 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.03 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12520.488685002498 (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 : 1.92 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 144.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.9%)
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 | 7.284e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12125.594866836973 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.291e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12067.429998848276 (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 : 1.77 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.16 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12149.118854210754 (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 : 1.92 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.314e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11935.535037432834 (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 : 1.79 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.74 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12127.192286797826 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.79 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12464.57866019624 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (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 | 6.809e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12664.730903454725 (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 : 2.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12306.326245445562 (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 : 1.87 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12153.080836835974 (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 : 1.73 us (1.2%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 140.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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-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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12268.755983685056 (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 : 1.68 us (1.1%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.13 us (95.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11976.69427182176 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.27 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.1%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11859.508331810657 (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 : 1.79 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.60 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.2%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11697.455861387632 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.54 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11930.13861294835 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12273.178542755772 (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.07 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.852e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12093.292775640735 (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.18 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 146.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11821.153050830031 (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.05 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.4%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11521.735092235022 (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 : 1.69 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 184.89 us (96.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11087.219388747248 (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 : 1.84 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.4%)
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 | 7.293e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11146.239190599033 (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 : 1.68 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.78 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 7.508e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10773.06032635767 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11309.245311479299 (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.01 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 172.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.1%)
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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10884.55710528117 (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 : 1.91 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.64 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 = (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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11151.205370001837 (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 : 1.72 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.78 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (55.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.107e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7163.66570594966 (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.38 us (1.6%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.84 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.1%)
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 | 7.052e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11184.673546578446 (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.06 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.96 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (70.1%)
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 | 7.131e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11005.064757178143 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10867.006996400192 (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.28 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 144.92 us (95.6%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11105.53444390743 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 168.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10812.588448454291 (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.01 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10649.412785923489 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (55.2%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11162.415565056364 (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.11 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 156.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (-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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10925.442329734935 (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 : 1.69 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10560.21876832158 (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 : 1.64 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 166.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (64.4%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10286.53437406498 (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.03 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10425.499150937729 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10244.933942736383 (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 : 1.80 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.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 = (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 | 7.309e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10121.650265915849 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10459.072557974427 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10396.223401385554 (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 : 1.84 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10585.307978390678 (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.08 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.26 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10287.290514618622 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.1%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10292.558313112482 (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 : 1.87 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9963.352166846536 (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 : 1.88 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 173.76 us (96.3%)
LB move op cnt : 0
LB apply : 1.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9849.512920128198 (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 : 1.90 us (1.3%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (62.4%)
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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9902.891565687172 (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 : 1.76 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9650.331527507798 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (57.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 = (-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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9833.077279215719 (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 : 1.91 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9569.62484294245 (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 : 1.69 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.14 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.1%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9868.868763794962 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.16 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9526.027000318016 (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 : 1.95 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10055.893656634855 (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 : 1.94 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9993.488312545525 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.05 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9721.36305197851 (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.04 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.9%)
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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9390.067225636089 (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 : 1.78 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.00 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.165e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9322.77681022531 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9374.252781944104 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9214.589070084765 (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 : 1.87 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9069.343863918402 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9262.861453368929 (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.25 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.83 us (95.5%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9264.940403732171 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9377.44928948551 (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.10 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.10 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9029.71342811019 (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.06 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.2%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9051.081897532957 (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 : 1.64 us (1.0%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8850.168794297233 (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 : 1.80 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8713.066354282491 (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 : 1.87 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.33 us (95.6%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8910.52976269757 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (62.2%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8822.285317573569 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8594.51199029084 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8697.19506530613 (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.27 us (1.4%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 156.98 us (95.3%)
LB move op cnt : 0
LB apply : 1.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (56.9%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8349.049726507064 (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 : 1.89 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 146.57 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.359e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8284.577718109458 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.850e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8850.260230406633 (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.05 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (54.4%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8432.508261162744 (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 : 2.08 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.7%)
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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8524.038192857659 (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.10 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8701.241567741694 (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 : 1.82 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.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 = (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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8331.91922303323 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.47 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8522.296911649333 (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 : 1.69 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.008e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8366.747180327797 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.6%)
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 | 7.362e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7921.168658335189 (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.00 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8064.456012715622 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.18 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (58.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.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 | 7.491e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7700.438757261742 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.0%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8398.802756922261 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.16 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.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 = (-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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8167.876216189157 (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 : 1.83 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8082.099205823663 (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 : 1.99 us (0.8%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 245.82 us (97.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7059.229139170352 (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.11 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.57 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7802.111910318869 (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 : 1.75 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.51 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7818.3558476826665 (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 : 1.76 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.07 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.2%)
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 | 7.276e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7638.030011925409 (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.07 us (1.4%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.99 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.062e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7828.786809486156 (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 : 1.73 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.62 us (96.6%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.1%)
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 | 7.646e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7193.228768282649 (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.07 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.326e-04 | 2.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7468.534212215158 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7590.19316357556 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.01 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.5%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7775.58888676432 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.76 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7709.271445034869 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.5%)
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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7837.476078294589 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.89 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7845.425134931269 (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.13 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7532.893170001095 (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.04 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.3%)
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 | 7.298e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7239.615394431091 (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 : 1.87 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.306e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7196.805603357617 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7269.102718810373 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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.221e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4266.553600189017 (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.02 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 158.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7413.487778143299 (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 : 1.75 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 161.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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,2.7755575615628914e-17,0)
sum e = 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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7174.928955452248 (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 : 1.82 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7158.225655981942 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.75 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (64.6%)
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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7095.830013299161 (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 : 1.64 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.54 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7252.71940173581 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7096.8506018068665 (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 : 1.74 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.8%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7220.073122818325 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.298e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6879.322544010658 (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.01 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7032.607991108798 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (-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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7281.01889737993 (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 : 1.89 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.05 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6957.580611852111 (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 : 1.66 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.0%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6922.062926594813 (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.04 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 175.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6837.082351624143 (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 : 1.66 us (1.0%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.2%)
LB compute : 158.51 us (95.7%)
LB move op cnt : 0
LB apply : 1.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6834.941768244153 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6882.919826753473 (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.25 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.02 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6868.666229078899 (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 : 1.69 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.999e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6907.090396551517 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 = (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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6882.6613485975895 (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.21 us (1.5%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 143.10 us (95.5%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6823.969702167001 (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.07 us (1.4%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 145.60 us (95.6%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 = (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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6814.977834807291 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.1%)
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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6592.715804703317 (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.10 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6591.028872085308 (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 : 1.79 us (1.0%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 164.66 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.5%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6698.483203163983 (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 : 1.75 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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,2.7755575615628914e-17,0)
sum e = 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 | 7.439e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6327.591611690201 (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 : 1.87 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.8%)
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 | 7.392e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6345.133555902452 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6554.217436907669 (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 : 1.95 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.86 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.7%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6573.227096010275 (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 : 1.90 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 153.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (58.5%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6463.174701113151 (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.01 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.04 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6606.085050392025 (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 : 1.97 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.1%)
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 | 7.352e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6270.829406168187 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (53.1%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6670.12396831438 (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.04 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.96 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6599.446805783934 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 145.30 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (60.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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6658.713412316157 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6451.698520033909 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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,-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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6418.044631097662 (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 : 1.74 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.60 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6369.721751308148 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6396.322430142711 (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 : 1.86 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6252.082041532273 (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.00 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6202.1228414780135 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6324.31239737353 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.868e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6493.694114403164 (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 : 1.89 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.23 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.373e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6032.25398674195 (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.05 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.20 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6223.146048576213 (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 : 1.92 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 175.09 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.458e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5932.632219446975 (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 : 1.83 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 182.16 us (96.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.5%)
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 | 7.260e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6078.649118058485 (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.00 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (65.8%)
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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6047.401728620269 (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 : 1.69 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (66.7%)
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 | 7.276e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6035.656053470101 (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 : 1.75 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6202.975343723621 (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 : 1.69 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (55.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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6154.958254596663 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.53 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6224.2881660563535 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (59.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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6208.748842245851 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6280.155184230136 (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.13 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5918.870081231067 (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.06 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.97 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (38.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 = (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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6199.043683417151 (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 : 1.77 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
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 = (-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 | 7.398e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5834.892033539921 (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 : 1.69 us (1.0%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6122.687922128805 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.74 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.5%)
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 | 6.992e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6150.444475431581 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.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,-5.551115123125783e-17,0)
sum e = 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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5982.473170792995 (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 : 1.90 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.86 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6028.2526828012615 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6095.720095871372 (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.00 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 550.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 143.60 us (95.4%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (70.2%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6150.63406178053 (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 : 1.91 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.24 us (95.4%)
LB move op cnt : 0
LB apply : 1.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.2%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6137.335658459409 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6026.406875962183 (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.12 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5973.420572995585 (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 : 1.66 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.26 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5944.22237642317 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.1%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5868.845922681534 (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 : 1.81 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5839.2851823131305 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.02 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.057e-04 | 2.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5994.497078739136 (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 : 1.79 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 7.415e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5698.106975884203 (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 : 1.92 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.0%)
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 | 7.143e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5908.574193437933 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5900.817636382514 (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.07 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.345e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5734.5483646836365 (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 : 1.88 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6176.6730064154035 (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 : 1.91 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6105.042683678966 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.931e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6060.548683023518 (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 : 1.85 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5932.412046441366 (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 : 1.66 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.78 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5855.707781974861 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5794.797214003298 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5941.057972792721 (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 : 1.97 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.98 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.347e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5698.947847418708 (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.09 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5798.325169792556 (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 : 1.95 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.7%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5778.233737640382 (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 : 1.72 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5992.898227895151 (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.07 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5965.342901491159 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.7%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6145.252048779821 (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 : 1.89 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 170.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5739.212553738126 (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 : 1.75 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5871.063192834447 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.497e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5572.535307748557 (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 : 1.98 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.8%)
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 | 7.349e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5684.662963887672 (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 : 1.84 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5835.085956886628 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.39 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5885.839051875604 (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.18 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.84 us (95.8%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5941.946871599338 (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.05 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5893.460118106451 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 148.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5938.824251597239 (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 : 1.80 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.7%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5882.83103912388 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.860e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6098.143249629787 (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 : 16.44 us (9.7%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.76 us (87.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (53.3%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5883.289374911989 (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 : 1.72 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 174.06 us (96.6%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.369e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5681.672706425857 (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.47 us (1.6%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.30 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.331e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5714.08844698311 (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.18 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.56 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6000.9113547768875 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5959.843916354744 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6056.777056504358 (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 : 1.88 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5917.059833442531 (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 : 1.81 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.58 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.314e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5746.118927662142 (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.16 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 147.70 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5944.869680404117 (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 : 1.76 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 145.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5851.965329973036 (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.06 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (-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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5986.441072582159 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.72 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.5%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5981.289124465317 (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.00 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5936.584610438898 (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 : 1.92 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.86 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (57.9%)
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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6110.495012617931 (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.38 us (1.6%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 145.29 us (95.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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,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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6006.0067695938715 (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.09 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6231.861671618805 (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.02 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.0%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5982.4616465961535 (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 : 1.81 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5914.20120799433 (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 : 1.76 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.33 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5938.631986030847 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.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 = (-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 | 7.185e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5928.431184066329 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6074.846355296378 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 420.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.51 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5933.367884119914 (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.10 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.58 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.7%)
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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5922.591826703233 (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 : 1.77 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 152.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5945.534046973248 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6252.500917209668 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.7%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6309.908860681855 (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 : 1.90 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5990.185504265655 (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 : 1.99 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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 | 7.415e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5819.084770474525 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6126.827421222243 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6042.110558278237 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.02 us (95.8%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6154.090748194624 (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 : 1.73 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.06 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (53.6%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6152.94933815176 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.43 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (58.0%)
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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6267.624400918291 (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 : 1.84 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.24 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (68.5%)
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 | 7.270e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6005.157016723812 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.78 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6148.269336659154 (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 : 1.82 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6018.118625826776 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.43 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6271.558225518874 (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.05 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.98 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.1%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6133.343885501838 (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 : 1.70 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6310.951643059022 (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 : 1.72 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6189.525435365358 (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 : 1.89 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.9%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6203.886097805475 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6174.255734993828 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (-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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6202.827866011057 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6177.030896741302 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6341.25390471667 (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 : 1.74 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6527.7970756891955 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 151.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.5%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6393.2330246740175 (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.34 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.98 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6535.884824003377 (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 : 1.77 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.95 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.269e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6226.744093270368 (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 : 1.71 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.64 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.3%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6462.722862210809 (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 : 1.72 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.48 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.41 us (95.8%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6344.93849025529 (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 : 1.93 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.56 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.9%)
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 | 7.264e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6283.50067125905 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.15 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6495.024436842145 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6389.145618866667 (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 : 1.80 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6410.459296141481 (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.34 us (1.5%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.97 us (95.6%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.121e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6484.905790092299 (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.14 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 541.00 ns (0.4%)
LB compute : 145.27 us (95.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 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.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 | 6.933e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6681.227003986305 (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.28 us (1.4%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 154.26 us (95.2%)
LB move op cnt : 0
LB apply : 1.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6606.672264497894 (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.04 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.313e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6373.220545441174 (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.18 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6506.038214571787 (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 : 1.79 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.0%)
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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6503.129471041219 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (57.1%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6695.4671076571785 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6520.366210033361 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6704.516752574031 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.021e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6766.543011144187 (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 : 1.91 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6834.904386462566 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 9.296e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5145.1615377697535 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.37 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.308e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6566.759983888257 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.07 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6762.359559750471 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.3%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6838.343991915278 (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.05 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7020.27654959215 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.910e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7041.696571387062 (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 : 1.75 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 189.09 us (96.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.5%)
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 | 7.356e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6638.794009882097 (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.07 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 180.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.5%)
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 | 7.508e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6527.344894019472 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (59.9%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6938.562002362307 (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.11 us (1.4%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.15 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.195e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6860.325938521775 (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.11 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.72 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6766.369252327984 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.07 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.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 = (-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 | 7.469e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6657.512573477536 (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 : 1.74 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6998.151446362746 (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 : 1.94 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6855.716773111418 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7210.885092490647 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.911e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7303.192939057302 (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.07 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7085.70341416959 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7064.365894592642 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.55 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7119.221104770227 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (64.6%)
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 | 7.398e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6928.529801561749 (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 : 1.78 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (66.8%)
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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7010.182571557477 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7319.47889902128 (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 : 1.70 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.30 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7232.512774229971 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7223.191503816238 (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.06 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (55.4%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7406.268750137831 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7329.762367595177 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 7.067e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7456.38064515809 (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.01 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7638.616531732375 (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 : 1.94 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.0%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7510.527971382793 (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.29 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.6%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7471.294789274791 (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 : 1.85 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 181.58 us (96.6%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (65.6%)
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 | 7.447e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7191.0166141684285 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.1%)
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 | 6.956e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7730.483040344599 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.6%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7678.7308857740245 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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 = (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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7516.1497437407315 (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.02 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 = (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 | 7.351e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7405.810545790859 (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 : 1.95 us (1.3%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 500.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.68 us (95.6%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7605.704677365817 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7824.955064504382 (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 : 1.82 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7807.818909064939 (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.08 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 155.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.965e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7946.607648430408 (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.06 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7883.394534704984 (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.17 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.93 us (95.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (46.4%)
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 | 7.058e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7907.78296027424 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 163.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.2%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8021.01314914534 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.47 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.7%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7851.732418089521 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7903.263223241121 (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 : 1.72 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 159.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (67.0%)
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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7854.774170963488 (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 : 1.73 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.61 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.2%)
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 | 7.471e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7629.41704696351 (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 : 1.73 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8010.918423237608 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8216.902996836685 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.90 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 = (-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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8153.422357718524 (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.13 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 6.884e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8420.733080733575 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.2%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8254.107048546666 (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 : 1.69 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8296.88951168156 (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 : 1.65 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.38 us (96.3%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8299.641028864246 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.34 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (64.4%)
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 | 7.354e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8017.465290948519 (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 : 1.92 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.408e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7993.110850702428 (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 : 1.70 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.26 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.328e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8114.421262918578 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.3%)
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 | 7.309e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8170.217350268336 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8277.618983030829 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8387.877124988283 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.821e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8865.305152041834 (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 : 1.98 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 174.45 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (70.5%)
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 | 7.270e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8353.257372980486 (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 : 1.99 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8365.961063211582 (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.21 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 176.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.421e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8252.376853598957 (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 : 1.98 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 172.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8487.471035084247 (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.32 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.102e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8695.73089502156 (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 : 1.89 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 175.89 us (96.5%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.4%)
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 | 7.415e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8363.380429264222 (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 : 1.77 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8731.040794560507 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.6%)
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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8583.656616652093 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8749.90165560564 (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 : 1.75 us (1.1%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 530.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8803.65235785662 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (58.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 | 7.396e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8559.495259041385 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8724.6085712706 (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 : 1.81 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.0%)
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 | 7.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8632.30800372362 (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 : 1.83 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (57.1%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9083.621763196817 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.59 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8940.088116615469 (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.02 us (1.3%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.78 us (95.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (50.2%)
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 | 6.841e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9444.74978221792 (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.06 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.38 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9171.053200826165 (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 : 1.88 us (1.1%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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 = (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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9249.368194153394 (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 : 1.79 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.55 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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,2.7755575615628914e-17,0)
sum e = 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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9366.234725896149 (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 : 1.73 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.21 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.3%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9014.740449142726 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.18 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (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 | 7.055e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9342.544528065004 (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 : 1.73 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (56.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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9418.330117982387 (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 : 1.79 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 400.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 143.93 us (95.6%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (73.1%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9480.450193584395 (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 : 1.88 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.42 us (95.2%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9592.4726782425 (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 : 1.91 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.52 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9838.766574339397 (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.18 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (57.9%)
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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9318.477130173036 (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.07 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9596.063965215535 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.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 | 7.165e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9450.858897108643 (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 : 1.73 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (66.1%)
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 | 7.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9030.172841585834 (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.14 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9602.759326848744 (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 : 1.72 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.48 us (96.2%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (75.5%)
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 | 7.037e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9731.587401654215 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.55 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9560.634672301689 (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 : 1.68 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9776.345390902417 (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 : 1.81 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.5%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9746.10687860125 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.79 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9985.319322576735 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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,0,0)
sum e = 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 | 7.016e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9938.57260531386 (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.18 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9878.81757382339 (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 : 1.92 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9975.812607597732 (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 : 1.97 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 176.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.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 = (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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9781.529003626938 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9714.955021735035 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.0%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10040.97657448558 (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.25 us (1.5%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.25 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 = (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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9938.610436426512 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.94 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10184.951157513091 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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.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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10215.807002909982 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10012.297660573066 (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 : 1.89 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.3%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10103.516596949392 (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 : 1.97 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.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,2.7755575615628914e-17,0)
sum e = 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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10296.08857916153 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.65 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (57.4%)
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 | 6.955e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10437.124980070563 (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 : 1.87 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.67 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9942.175082622072 (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.02 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 180.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.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 = (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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10110.170345254402 (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 : 1.80 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.65 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10103.868447537436 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.7%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10208.843701261989 (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 : 1.73 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 160.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.443e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9900.514104160851 (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 : 1.91 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.347e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10060.086404884338 (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 : 1.88 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10342.737862714761 (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 : 1.92 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 162.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (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 | 7.310e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10168.888485587964 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10661.272954513692 (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 : 1.72 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 = (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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10831.997591124942 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 6.852e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10937.885198744516 (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.06 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 = (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 | 6.842e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10982.44051736629 (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 : 1.90 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10769.852573115659 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.84 us (95.9%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.4%)
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 | 7.378e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10236.533069228757 (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 : 1.83 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 183.57 us (96.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.689e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9848.27611817875 (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 : 1.85 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.22 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10364.806196994246 (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 : 1.85 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.1%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10587.231090816818 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.21 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10392.36010367525 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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.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 | 7.511e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10177.758408874546 (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 : 1.90 us (1.2%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.20 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10909.93337865979 (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.02 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 143.70 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.807e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11281.715323429307 (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 : 1.89 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.60 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11002.896856088586 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.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 = (0,0,0)
sum e = 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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10898.795040864874 (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.22 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10971.280758486158 (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.13 us (1.3%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 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.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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10991.815707650925 (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 : 1.81 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 158.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (66.7%)
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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10758.57276321978 (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 : 1.84 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 146.29 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10836.163502011725 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 141.61 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11045.491994616097 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 142.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11190.69478320785 (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 : 1.77 us (1.1%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (80.8%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10846.262351758123 (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 : 1.95 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 = (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 | 6.904e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11342.13454736223 (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.04 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10904.166768534486 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 6.861e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11449.570280656664 (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 : 1.71 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.83 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 | 7.032e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11188.931146935958 (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 : 1.69 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (66.3%)
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 | 7.291e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10807.567978016987 (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 : 1.86 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11003.85714359608 (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 : 1.86 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10959.213842335561 (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 : 1.71 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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 = (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 | 7.328e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10798.276221599128 (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 : 1.78 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.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.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11151.256639504687 (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 : 1.85 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.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 = (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 | 7.296e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10872.72147268712 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11192.804094398274 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.6%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11513.281276503612 (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.01 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.34 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11304.727481518834 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11267.275288669374 (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 : 1.72 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11232.2045728575 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11043.385250360732 (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 : 1.90 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.02 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (61.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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11363.659653632136 (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 : 1.94 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10975.608334682247 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11144.194966859448 (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 : 1.65 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.85 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11185.109198138172 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.76 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11490.212148494178 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 6.735e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11902.890289166988 (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.05 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.31 us (95.9%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 6.819e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11761.622229114755 (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.04 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.1%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11547.276795388167 (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 : 1.86 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11488.545989027169 (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 : 1.72 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 144.94 us (96.2%)
LB move op cnt : 0
LB apply : 922.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.1%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11103.259877101524 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (60.0%)
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 | 7.419e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10826.433435133316 (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.09 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11026.221194011825 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (54.4%)
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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11178.798949183583 (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.16 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.86 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11370.621289063707 (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.21 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11138.562186549247 (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 : 1.97 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11501.421824679477 (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.12 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.49 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 = (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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11663.732993743382 (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 : 1.68 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.39 us (96.4%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.5%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11365.669250014815 (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 : 1.77 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.91 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11319.14454829315 (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 : 1.94 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.7%)
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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11030.169727437551 (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 : 2.31 us (1.5%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 146.02 us (95.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11218.54036488301 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.09 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (59.5%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11493.124781865818 (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 : 1.75 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11462.283414896592 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11664.071698899246 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11559.84566088824 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.7%)
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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11274.42948544044 (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 : 1.84 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.90 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.298e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10970.484791153822 (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.23 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.9%)
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 | 7.248e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11038.421800957283 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (72.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 = (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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11302.79569786862 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11372.917182179031 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.09 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (59.1%)
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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11154.490192103018 (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 : 1.77 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 7.513e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10615.43096200496 (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 : 1.95 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11172.786930124536 (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.03 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.251e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10977.773212341825 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (61.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 | 6.873e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11569.240247542444 (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.12 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.16 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11183.669078028726 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11527.480256808478 (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 : 1.70 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.1%)
LB compute : 174.36 us (96.5%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.9%)
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 | 7.326e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10816.818716052112 (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 : 1.82 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.77 us (87.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11205.085774027768 (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.13 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.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 = (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 | 7.116e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11106.703537566582 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.41 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11243.404897692262 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.14 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11118.341548985067 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.08 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11036.541913122543 (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 : 1.89 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.68 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (55.3%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11100.686995339574 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.85 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11092.554116527757 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (56.1%)
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 | 6.942e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11285.541203133578 (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.09 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.0%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11201.152824203755 (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 : 2.01 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.87 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11038.061888177785 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 = (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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11152.3865712476 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.31 us (96.1%)
LB move op cnt : 0
LB apply : 922.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10948.519435746615 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10930.559885153694 (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.11 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.54 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.243e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10701.61933624451 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.170e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10789.73894996908 (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 : 1.83 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 166.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.418e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10408.454201218434 (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.00 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 191.17 us (96.7%)
LB move op cnt : 0
LB apply : 1.22 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10303.982376502045 (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 : 1.91 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10760.119262729717 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.5%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11088.96546987894 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.70 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.0%)
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 | 6.880e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11129.08765603229 (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.03 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.5%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10826.819128156507 (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 : 1.82 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 175.41 us (96.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.235e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10536.907780890158 (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.16 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 165.74 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10392.798288657623 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.8%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10627.613631953272 (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 : 1.86 us (0.6%)
patch tree reduce : 370.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 309.51 us (98.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 9.522e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7950.7075872963005 (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.26 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.615e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9917.268829294237 (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.43 us (0.4%)
patch tree reduce : 370.00 ns (0.1%)
gen split merge : 331.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.1%)
LB compute : 594.08 us (98.8%)
LB move op cnt : 0
LB apply : 1.37 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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.148e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6564.137613921077 (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.02 us (1.3%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.10 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.8%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10659.771847036669 (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.16 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 171.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.7%)
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 | 7.332e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10224.01138026388 (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 : 1.97 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 6.972e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10723.987728807264 (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 : 1.98 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 8.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8529.953051206063 (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.47 us (1.6%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.59 us (95.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (51.5%)
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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10210.113120537831 (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 : 1.80 us (0.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 184.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.7%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10103.024409305222 (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 : 1.79 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 172.53 us (96.4%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.396e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10003.535339368616 (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 : 1.68 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (62.8%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10159.561372312974 (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 : 1.78 us (0.7%)
patch tree reduce : 380.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 266.76 us (97.4%)
LB move op cnt : 0
LB apply : 1.36 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.2%)
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 | 8.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8951.809942568025 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.0%)
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 | 7.098e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10337.09148988853 (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 : 1.89 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10155.790056919735 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 501.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.0%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10315.243851405257 (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 : 1.91 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10489.002703777951 (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 : 1.73 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 7.229e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10034.384567613359 (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 : 1.75 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10512.128618395309 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.7%)
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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10521.677071802409 (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.03 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9956.36823763773 (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 : 1.84 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.39 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10084.758082764565 (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.01 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9834.389573987597 (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 : 1.92 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.38 us (95.9%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10104.288077307872 (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 : 1.93 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.39 us (96.2%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.7%)
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 | 7.330e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9689.541728210343 (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 : 1.79 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.11 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.273e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9734.333431678066 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.1%)
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 | 7.530e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9372.948968760527 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10005.348734734986 (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 : 1.83 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 147.45 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9840.724056940038 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.0%)
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 | 7.319e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9551.440283233447 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.72 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9991.65849666312 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9852.269832488648 (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.08 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 182.88 us (96.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9418.810521206236 (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 : 1.86 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.94 us (96.5%)
LB move op cnt : 0
LB apply : 1.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9598.353619610016 (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 : 1.71 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.85 us (96.6%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (67.9%)
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 | 7.609e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9038.564798142828 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.34 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.1%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9702.366158369128 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9632.517540774124 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9587.191882036206 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9483.230962438796 (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 : 1.67 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.1%)
LB compute : 168.65 us (96.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.8%)
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 | 7.466e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9058.895621189451 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.3%)
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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9566.517844826776 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.374e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9108.764936794578 (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 : 1.95 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9255.041220870384 (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.09 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.11 us (95.7%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.9%)
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 | 6.891e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9680.98361934113 (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.00 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9402.643555124798 (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 : 1.94 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.251e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9138.52511997902 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9316.293853110172 (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 : 1.68 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.98 us (96.1%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9109.374219947047 (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 : 1.87 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.38 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9035.712659185328 (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 : 1.63 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9322.089314289473 (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.28 us (1.5%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 147.99 us (95.0%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (56.0%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9197.603406188324 (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 : 1.93 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 148.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9138.118528209894 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.3%)
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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9412.388384469883 (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.09 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (53.8%)
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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9358.802100459134 (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.07 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.24 us (95.9%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.7%)
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 | 6.851e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9375.769261772184 (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 : 1.66 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 156.59 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9211.243981019848 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.5%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8822.164450840664 (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 : 1.93 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8735.690323231238 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 7.273e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8711.55716070605 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.09 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8666.769104248431 (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 : 1.84 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8633.199093533687 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8868.02222837091 (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 : 1.79 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8744.545886412025 (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 : 1.91 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8834.671428508573 (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.02 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.31 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.1%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8704.949826622507 (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.22 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.39 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.971e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8874.50137304381 (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 : 1.88 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8469.023067008995 (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 : 1.84 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.29 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 = (-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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8608.083643223206 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8332.789186054055 (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.33 us (1.5%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.61 us (95.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8470.979713237948 (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 : 1.83 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.76 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8578.058397163657 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8615.405831693979 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8530.882770348273 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.58 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.800e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8859.154747352599 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.906e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8694.264189275349 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.96 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 6.918e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8651.38630795578 (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 : 1.67 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 182.93 us (96.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 7.492e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7963.332802764173 (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 : 1.95 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 170.56 us (96.2%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.175e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8289.344988239465 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.22 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 = (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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8202.220438476515 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8362.34999023457 (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 : 1.89 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.39 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.317e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8052.328638464343 (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.01 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8290.757912050765 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.113e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8233.037622052061 (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 : 1.80 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.59 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8320.804843799537 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8527.577723543724 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.34 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.4%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8109.2517251596 (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.10 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8372.217829654746 (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 : 1.85 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 7.021e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8218.412873115576 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.5%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8200.398484141442 (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 : 1.69 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.6%)
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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7865.305509717432 (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 : 1.69 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.2%)
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 | 7.357e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7776.291683210868 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7812.385885542649 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7906.062863073467 (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.11 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7947.90219604523 (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 : 1.67 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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 = (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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7812.578183908586 (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 : 1.94 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 147.06 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7989.845548774391 (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.66 us (1.7%)
patch tree reduce : 671.00 ns (0.4%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.35 us (95.5%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.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 = (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 | 6.967e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8081.27297816422 (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 : 1.94 us (0.5%)
patch tree reduce : 390.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 362.61 us (98.3%)
LB move op cnt : 0
LB apply : 1.04 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 9.419e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5962.120103058779 (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 : 1.90 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 = (-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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8020.2560344243675 (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.09 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8055.903472622329 (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.60 us (1.7%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.11 us (94.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (53.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,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 | 7.161e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7785.297321541537 (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 : 1.70 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.3%)
LB compute : 160.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (67.9%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7958.125619385006 (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 : 1.77 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.86 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7730.106060626984 (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 : 1.65 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 169.99 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (67.4%)
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 | 7.386e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7496.398291448251 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 143.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7687.484576923649 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7813.755224586133 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.93 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.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 = (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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7796.269740310061 (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 : 1.93 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7697.275044737937 (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 : 1.91 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8042.42458953057 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 147.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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.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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8011.723220157704 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7802.842128193168 (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 : 1.95 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.08 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 = (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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7544.252893831051 (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 : 1.80 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.81 us (96.5%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.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 = (-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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7533.630888839779 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.59 us (96.1%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.107e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7636.967128614316 (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.00 us (0.5%)
patch tree reduce : 361.00 ns (0.1%)
gen split merge : 310.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 398.25 us (98.4%)
LB move op cnt : 0
LB apply : 1.31 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.5%)
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 | 9.538e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5681.025438413481 (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 : 1.84 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 181.02 us (96.6%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.284e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7427.062484736922 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7540.957056839755 (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 : 1.96 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 152.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (55.7%)
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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7503.001681936756 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7628.015466214026 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.500e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7170.724867497661 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.116e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7547.999132788059 (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 : 1.85 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.66 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.6%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7689.580511919024 (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.21 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 153.85 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7587.871067266733 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7818.357630082374 (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.09 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7815.788606280394 (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 : 1.81 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7549.105633527605 (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 : 1.86 us (1.3%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.04 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.5%)
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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7482.096285017647 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7616.711331102836 (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 : 1.90 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.330e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7265.275180268966 (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.11 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (56.5%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7391.684419792597 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7550.875071494251 (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 : 1.99 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7413.556028584325 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.34 us (96.0%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.1%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7573.536560925789 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.1%)
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 | 6.912e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7680.491307785772 (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.18 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.38 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7307.797613889007 (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.17 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.76 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7670.832991329304 (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 : 1.97 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7362.6597594551395 (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 : 1.71 us (1.1%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.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 = (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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7360.713651346039 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.41 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7443.496315507391 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7512.66634916703 (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 : 1.93 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 175.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (68.6%)
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 | 7.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7086.8232211292025 (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.15 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.22 us (95.7%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.4%)
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 | 7.255e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7304.894914973231 (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.04 us (1.4%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 144.02 us (95.3%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (73.1%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7565.627410322225 (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 : 1.93 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 148.30 us (95.5%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 = (-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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7631.436839520682 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7404.315156873471 (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.02 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 167.88 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7442.709623678982 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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.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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7662.020657866052 (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 : 1.71 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 = (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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7592.578822188378 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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 = (-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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7483.931835830063 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.445e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7137.234217947737 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (57.7%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7514.725212278193 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 8.699e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6116.233204048742 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.39 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.418e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7177.615341306248 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.667e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6950.18980249419 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7603.51724253934 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.2%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7516.4883829531545 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7666.736322145441 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.885e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7768.872502078167 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7693.176666914799 (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.00 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 179.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.9%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7427.930499173605 (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 : 1.96 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 = (-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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7427.328429365877 (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.20 us (1.4%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 148.07 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7474.078105908578 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.23 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7360.438889861971 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 = (-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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7653.206744473338 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (-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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7542.413631657102 (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 : 1.73 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.06 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.5%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7767.470251363441 (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.12 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7861.957815091434 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.95 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (53.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 | 6.873e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7886.111957624669 (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.03 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7855.525464542076 (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 : 1.93 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 184.31 us (96.6%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.342e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7405.840180017443 (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.03 us (0.3%)
patch tree reduce : 360.00 ns (0.0%)
gen split merge : 301.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.0%)
LB compute : 716.25 us (99.0%)
LB move op cnt : 0
LB apply : 1.75 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (74.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 = (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.443e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3775.0441965375553 (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 : 1.76 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7544.168568733283 (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.10 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.00 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.1%)
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 | 7.570e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7218.443444654278 (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.67 us (1.6%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.17 us (95.7%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.405e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7392.601264123699 (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 : 1.79 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 156.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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.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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7667.89870260832 (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.05 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.239e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7588.316502498056 (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 : 1.86 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7915.489047530977 (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 : 2.17 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (54.2%)
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 | 6.883e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8010.954708234429 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7623.978342867467 (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 : 1.84 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.1%)
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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7641.439043685591 (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.00 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.2%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7804.952995686372 (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 : 1.81 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.28 us (96.2%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7834.119911611154 (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 : 1.71 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.55 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7876.834064670634 (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 : 1.86 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.01 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 7.717e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7228.060412541028 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.5%)
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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7896.697637782409 (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 : 1.67 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.60 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (55.1%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8013.554400173752 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 147.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8067.874166797243 (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 : 1.94 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 173.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.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 | 7.474e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7523.516249738606 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.39 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.2%)
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 | 7.007e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8041.102027745016 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.26 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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,-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 | 6.883e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8202.969221557094 (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.26 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8036.951856764121 (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 : 1.84 us (1.1%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.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 = (-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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8019.798218134753 (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 : 2.10 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 153.06 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.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 = (-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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8034.951144174996 (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 : 1.65 us (1.1%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.79 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7838.732343391121 (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 : 1.69 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.83 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8093.279679461286 (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.05 us (1.2%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 164.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7885.825840880866 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.406e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7735.167265435298 (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 : 1.91 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7976.494506092814 (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 : 1.72 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8143.164353817905 (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 : 1.96 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.31 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.6%)
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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8011.444677132287 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8240.677729679257 (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 : 1.78 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 7.267e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7966.837397009446 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8346.099135941638 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8397.204893959995 (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.33 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.44 us (95.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8150.126268038891 (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 : 1.90 us (1.0%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 180.28 us (96.4%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.306e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7993.261487428122 (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 : 1.91 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7993.477501455182 (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 : 1.76 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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 = (-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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8298.844807275193 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (57.9%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8267.768380219928 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.63 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8390.175025412002 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8347.271378876098 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8273.277672379867 (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 : 1.74 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.8%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8286.673954276295 (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 : 1.94 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8340.801258927833 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 6.899e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8635.500638288899 (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 : 1.88 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8500.337056695293 (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 : 1.70 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (-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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8424.041141641448 (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 : 1.73 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 149.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (62.4%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8405.256998386776 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.76 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.1%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8472.305088209914 (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 : 1.95 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (-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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8348.041666541552 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 152.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8435.568030642182 (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 : 1.74 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 152.80 us (96.3%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.442e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8138.583336616816 (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 : 2.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.226e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8401.76496904599 (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 : 1.84 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.0%)
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 | 6.810e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8936.965388978226 (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.01 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.74 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8770.323321583921 (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 : 2.02 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.89 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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.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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8728.072112549205 (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 : 1.89 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.8%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8653.287559757735 (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 : 1.67 us (1.0%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.58 us (95.7%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8832.011576823379 (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.08 us (1.4%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8802.301375025105 (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 : 1.74 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 156.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 = (0,0,0)
sum e = 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 | 7.326e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8434.373866448897 (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 : 1.78 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 7.353e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8424.910119687067 (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 : 1.72 us (0.9%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 176.83 us (96.6%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (68.3%)
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 | 7.478e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8306.225291184674 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.46 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.2%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8874.151131896426 (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.29 us (1.5%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.3%)
LB compute : 148.57 us (95.3%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (71.7%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8752.643144630852 (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 : 1.88 us (1.1%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 160.42 us (95.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8947.882848405718 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.0%)
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 | 6.902e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9095.819027297712 (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.21 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9079.339790079155 (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 : 1.84 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9033.55848588282 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (57.0%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8811.353419563582 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8838.808742732897 (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 : 1.76 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9117.58896069709 (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 : 1.74 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 165.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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 = (-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 | 7.437e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8585.566027431127 (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 : 1.93 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.344e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8719.130232639971 (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 : 1.86 us (1.3%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9224.848564631973 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (56.7%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9369.88774498026 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9272.385611235126 (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 : 1.91 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.6%)
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 | 6.937e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9339.905510108372 (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 : 1.82 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.65 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.8%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9320.444407944335 (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.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.9%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9025.543426300506 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9180.16887430383 (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 : 1.88 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9315.016417261148 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9207.99423083556 (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 : 1.96 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.22 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (60.0%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9292.531767754934 (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.08 us (1.4%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9478.39745742044 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9421.739273432015 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.9%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9457.702632638204 (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.01 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.11 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9618.211703158557 (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 : 1.92 us (1.2%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9572.035535780142 (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 : 1.66 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.94 us (96.2%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9530.185508526118 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9499.34438396295 (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.04 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9284.867431915993 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.48 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9695.26375401862 (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 : 1.72 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.95 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9517.01864707868 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 = (-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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9727.541340797443 (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 : 1.88 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.50 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (67.2%)
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 | 7.384e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9285.157237936648 (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 : 1.97 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.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 | 6.976e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9860.539301566807 (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 : 1.99 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 157.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.5%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9825.036241361046 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.54 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (56.6%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10062.201894513946 (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 : 1.74 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 = (-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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9835.859164142057 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.1%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9813.817761171309 (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 : 1.69 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.74 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9860.883441039075 (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 : 1.84 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9949.475367642235 (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 : 1.75 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 167.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.5%)
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 | 7.428e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9474.70088169621 (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.05 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.354e-04 | 2.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9600.81470566437 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10057.895926465124 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 150.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10099.917617969582 (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.03 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (56.6%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10225.98697932357 (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 : 2.08 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10211.032080606614 (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 : 1.86 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 164.57 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (63.2%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9913.340415500994 (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 : 1.76 us (1.1%)
patch tree reduce : 580.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.2%)
LB compute : 160.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9961.620912585286 (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 : 1.98 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (63.5%)
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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9922.379647144562 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10166.582576988649 (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 : 1.69 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.85 us (94.0%)
LB move op cnt : 0
LB apply : 2.79 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (75.4%)
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 | 7.080e-04 | 0.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10268.863136217384 (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 : 1.87 us (1.1%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10200.807251718115 (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.11 us (1.4%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 149.34 us (95.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10218.251020517955 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10025.627597065926 (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.05 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10659.57437070128 (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.11 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (57.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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10501.862907432826 (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.31 us (1.5%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 148.84 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10736.317580414567 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.62 us (96.5%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.444e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9986.453611908119 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.66 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.9%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10609.683016683135 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.01 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.5%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10371.31158984732 (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.03 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.4%)
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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10465.800418233908 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.8%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10393.62785281677 (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 : 1.68 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 144.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10878.243910975934 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.15 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10903.409390735324 (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 : 1.78 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.11 us (96.3%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (54.3%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10605.128206842192 (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.06 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.3%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10788.604415878237 (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 : 1.91 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 471.00 ns (0.3%)
LB compute : 155.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.5%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10659.843305398303 (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.01 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.01 us (95.7%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.2%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11022.28989482722 (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 : 1.73 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.72 us (96.3%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10831.99805955211 (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 : 1.74 us (1.1%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.19 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10899.213283582592 (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 : 1.90 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10780.22879804269 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10972.847333622429 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.76 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11195.256231476002 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11056.929577559431 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.83 us (95.8%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11084.750052642206 (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.03 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.834e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11465.674887450521 (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.00 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.3%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10928.263621199832 (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 : 1.74 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11197.047384657255 (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 : 1.72 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11118.428491414148 (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 : 1.91 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 169.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (64.6%)
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 | 7.411e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10683.146868032465 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11161.524853242347 (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 : 1.87 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 561.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.07 us (95.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11186.980173414808 (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 : 1.68 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.83 us (96.2%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.428e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10736.815530261347 (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 : 1.90 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.32 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11481.968246506713 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.5%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11065.323554333065 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11650.380311265442 (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.15 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (63.2%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11016.13081079914 (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 : 1.96 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (46.7%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11658.792289148912 (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 : 1.86 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.4%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11416.004496647975 (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 : 1.89 us (1.1%)
patch tree reduce : 540.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11333.942023160427 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.75 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11668.157456700348 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.7%)
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 | 7.262e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11204.35603100159 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.83 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.062e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11543.36558965981 (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 : 1.87 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11320.697515515687 (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.05 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.3%)
LB compute : 145.28 us (95.5%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (69.6%)
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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11690.293923294052 (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 : 1.64 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.13 us (95.6%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.743e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12159.142644330565 (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 : 1.89 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.82 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12071.896506860368 (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 : 1.79 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.1%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11536.278284017633 (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 : 1.98 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11532.290846436683 (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.00 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (57.9%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11493.041163857635 (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 : 1.77 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.81 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.3%)
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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11238.17707115362 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11469.947725529917 (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 : 1.91 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 194.96 us (97.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.542e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10997.312985580427 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.2%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11758.635852378864 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11850.598357675728 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 7.293e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11420.72926440742 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (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 | 6.726e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12399.146353104283 (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 : 1.86 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 169.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11753.329666792422 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12035.695741141708 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11484.13386759124 (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 : 1.93 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 179.13 us (96.4%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.273e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11518.62142267141 (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.11 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.14 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11919.151672825505 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.318e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11471.257013817341 (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 : 1.88 us (1.2%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11799.430481919137 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.14 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11944.301082181839 (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 : 1.90 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11904.400282444634 (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 : 1.94 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 153.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.6%)
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 | 7.319e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11505.403760668372 (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 : 1.82 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11563.397480249292 (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 : 1.98 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12064.207836699305 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.818e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12373.89036869869 (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 : 1.69 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.56 us (96.5%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11678.95772846091 (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 : 1.74 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 176.94 us (96.6%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.245e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11654.241568400661 (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.02 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.64 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11565.197564103732 (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 : 1.72 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11919.364390670062 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.92 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11838.024127698014 (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.16 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.42 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11897.15681753464 (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 : 1.91 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.02 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12025.986996718624 (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.01 us (1.2%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 164.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11932.423542045235 (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.04 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (-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 | 7.078e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11944.269440753642 (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.05 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.1%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12370.70142463332 (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 : 1.76 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12027.424503498121 (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 : 1.78 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.05 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11769.119559615745 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.85 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11948.067280910427 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.1%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11841.125292278582 (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.08 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.419e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11379.29230195395 (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 : 1.69 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11596.527962630315 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.79 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11791.248729154579 (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 : 1.81 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11931.724378815381 (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 : 1.83 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.44 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.785e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12416.17231504338 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 143.82 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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.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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12221.930793422654 (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.03 us (1.3%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 450.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.33 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11896.858853749727 (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 : 1.65 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 177.05 us (96.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11669.949097007859 (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.19 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.86 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.7%)
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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11648.038375081207 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11776.285294502244 (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.08 us (1.4%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.34 us (95.6%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11870.957266130548 (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.12 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 141.90 us (95.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11560.385199634846 (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.08 us (1.4%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.75 us (95.6%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11765.549082727031 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11726.313653022215 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.84 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (56.9%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11860.748540999779 (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.18 us (1.4%)
patch tree reduce : 541.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 551.00 ns (0.4%)
LB compute : 144.20 us (95.5%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 6.811e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12233.642588846938 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 6.978e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11923.379257452736 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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 = (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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11694.183028801292 (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 : 1.92 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11753.454970407594 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11764.10486239337 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.59 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11626.411676848114 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.7%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11876.039995599704 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,2.7755575615628914e-17,0)
sum e = 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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11944.610286229787 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (52.5%)
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.321e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6225.842302413341 (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.21 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.84 us (95.4%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (58.0%)
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 | 7.384e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11121.384764118451 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 145.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11582.788595634811 (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 : 1.79 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11595.798887598998 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.70 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11754.563550763463 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.35 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 7.359e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11070.926157897977 (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 : 1.83 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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,2.7755575615628914e-17,0)
sum e = 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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11370.53372131719 (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.09 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11266.677154283207 (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.06 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.854e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11808.017683886728 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.9%)
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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11744.402743571365 (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 : 1.69 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.92 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.7%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11607.761471937598 (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 : 1.75 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 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.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 | 7.369e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10904.737643696195 (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 : 1.72 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.52 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11482.974208284668 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11097.044760547833 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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.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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11390.109943008665 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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.7755575615628914e-17,0)
sum e = 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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10912.005951112851 (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 : 1.79 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.24 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11365.863894453536 (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 : 1.87 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.68 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11289.716319903493 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.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 | 6.928e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11387.94596474548 (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.11 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10880.41325175724 (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.11 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.6%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11133.341657222167 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.97 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10819.447685135943 (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 : 1.95 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10969.779955571617 (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 : 1.91 us (1.3%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.31 us (95.4%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.1%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11058.285249651848 (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 : 1.94 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 168.06 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (65.3%)
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 | 7.492e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10343.481038946584 (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.06 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10832.161433111038 (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 : 1.89 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (-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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10850.421508206817 (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 : 1.94 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.336e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10464.086946905145 (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.40 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10684.675775916832 (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.15 us (0.9%)
patch tree reduce : 481.00 ns (0.2%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.2%)
LB compute : 229.85 us (96.7%)
LB move op cnt : 0
LB apply : 1.35 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (70.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 | 7.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9722.354725744539 (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.31 us (1.5%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.39 us (95.1%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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 = (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 | 6.870e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11061.903326635926 (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.03 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.04 us (96.0%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (60.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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11139.31901258766 (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.21 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 174.46 us (96.2%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.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 = (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 | 7.225e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10447.171869346741 (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 : 1.83 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.8%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10590.501058140142 (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 : 1.71 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10512.448885352902 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10624.384512885117 (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 : 1.63 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.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 = (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 | 7.325e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10158.675364867517 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10730.381293846098 (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 : 1.93 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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,-5.551115123125783e-17,0)
sum e = 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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10337.078914761543 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.830e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10773.509392870925 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.90 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (59.9%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10334.801112385085 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.758e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10806.684126764045 (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 : 1.66 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10450.87142839103 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 140.60 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.2%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10512.081563898528 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9975.961792559634 (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 : 1.97 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.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 = (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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9833.114071577991 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9990.149425686517 (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 : 1.71 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.72 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9955.309763649371 (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.00 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.7%)
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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10177.931849211167 (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 : 1.75 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.22 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.752e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10477.251116732683 (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.13 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.13 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10260.230959091454 (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 : 1.81 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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 = (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 | 7.471e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9390.894544677818 (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.00 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 181.39 us (96.5%)
LB move op cnt : 0
LB apply : 1.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.315e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9551.226167949051 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 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.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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9739.134840163582 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.49 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.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 = (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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9728.829549184748 (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 : 1.83 us (0.4%)
patch tree reduce : 340.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 404.77 us (98.5%)
LB move op cnt : 0
LB apply : 1.35 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 9.523e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7244.774595711403 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9759.83416016704 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.05 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.136e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9585.026734634375 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9726.352032174338 (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 : 1.76 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.79 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9465.662805716482 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9602.168937413593 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.43 us (95.8%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9560.00548003182 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 153.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 6.959e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9616.029988321947 (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 : 1.89 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.33 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
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 | 7.159e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9305.538389762101 (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 : 1.71 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9477.435516689295 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9352.346790129683 (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 : 1.75 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.20 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9367.217099439556 (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 : 1.74 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.21 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (-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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9264.722208271114 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.6%)
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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8970.577117668096 (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.28 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.75 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 7.254e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8938.378335107665 (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 : 1.77 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.95 us (96.3%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 7.308e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8832.333536571994 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9437.778096771026 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9044.503098789059 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.82 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (58.6%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9187.892485545723 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 159.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8902.787996759489 (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 : 1.85 us (1.1%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 143.36 us (87.1%)
LB move op cnt : 0
LB apply : 15.61 us (9.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.9%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8966.688543076509 (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 : 1.73 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.09 us (96.3%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9011.058067353608 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8930.93237667867 (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 : 1.92 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (68.7%)
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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8534.669040787 (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 : 1.79 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.3%)
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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8455.734276839212 (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.41 us (1.6%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.41 us (95.3%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.212e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8545.05823189466 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9024.25801852202 (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 : 1.89 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.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 = (-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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8729.813300015288 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8778.427160940972 (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 : 1.72 us (1.0%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 166.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8400.991735555692 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8514.13560533921 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8266.257484108663 (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.07 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.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.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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8263.302744845034 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 = (-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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8361.316853739345 (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 : 1.62 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.18 us (96.6%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.383e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8003.039170921112 (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.01 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 = (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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8287.329157601605 (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 : 1.79 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8166.518468859644 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8350.016894026347 (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.08 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.53 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 = (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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8374.120331343202 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 145.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 = (-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 | 6.926e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8333.714355789856 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.293e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7876.839796378858 (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 : 1.66 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.79 us (96.1%)
LB move op cnt : 0
LB apply : 1.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8004.363986003717 (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 : 1.80 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.98 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (50.7%)
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 | 7.127e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7985.839978750506 (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 : 1.80 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.33 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8039.242689996435 (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 : 1.88 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7842.806274250489 (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 : 1.73 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 6.890e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8146.472875138032 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 141.10 us (96.0%)
LB move op cnt : 0
LB apply : 961.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8193.662079702193 (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.30 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.72 us (95.5%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7931.166834167559 (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.08 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.05 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7980.304321888683 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7874.44378439606 (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 : 1.90 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7519.839331133338 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7645.082843775116 (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 : 1.72 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.65 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.33 us (96.2%)
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 | 6.969e-04 | 2.6% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7798.396455966132 (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 : 1.70 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (56.7%)
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 | 6.983e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7747.433707000415 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 7.314e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7364.194227538002 (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 : 1.72 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7627.322579858689 (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 : 1.89 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7636.1504447759935 (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 : 1.69 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.1%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7741.295295270231 (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.02 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7404.700116241051 (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.15 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.0%)
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 | 7.278e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7235.700464403696 (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 : 1.90 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 165.10 us (96.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.2%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7428.909316964359 (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 : 1.68 us (1.0%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.5%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7289.1463103444075 (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 : 1.99 us (1.3%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.47 us (95.9%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.5%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7354.180659227544 (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 : 1.84 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.27 us (95.7%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7287.91140057435 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.26 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.9%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7287.728943630493 (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 : 1.98 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.57 us (94.0%)
LB move op cnt : 0
LB apply : 2.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7082.760010543897 (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.36 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.16 us (95.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7008.799136897158 (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.19 us (1.4%)
patch tree reduce : 600.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.4%)
LB compute : 144.95 us (95.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.788e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7492.087261929832 (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.18 us (1.4%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 146.07 us (95.1%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.008e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7226.6334655854935 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7380.0117251365655 (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.07 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7120.738374013213 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.91 us (96.0%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7041.188212784058 (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 : 1.75 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7009.672371453797 (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 : 1.70 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 7.762e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6389.088933461969 (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 : 1.99 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.24 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6879.756692185389 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7003.067683189287 (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 : 1.76 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6849.906637074286 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.62 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.0%)
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 | 6.998e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6972.563368545948 (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 : 1.89 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7114.2747706224945 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.78 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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-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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7064.771742883297 (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 : 1.96 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 168.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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 = (-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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6763.179381315199 (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.00 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6849.477985390949 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.32 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (67.3%)
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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6759.370343091356 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.6%)
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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6572.085671084656 (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 : 1.65 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.0%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6617.639372984043 (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 : 1.80 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6731.079424084528 (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.04 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6461.946160345731 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.13 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.001e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6706.192827856678 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6732.129430375651 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6765.860712198918 (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 : 1.71 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 14.90 us (8.9%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.88 us (87.7%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6562.113598483432 (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 : 1.74 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6591.504858080502 (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 : 1.92 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.43 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (62.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 = (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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6357.159715030524 (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 : 1.85 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6388.834516867635 (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 : 1.73 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6320.5289423832055 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.88 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6360.532906812075 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.71 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6357.193736510538 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6452.544868654763 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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 | 6.898e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6549.223675028471 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 6.887e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6537.76711218737 (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 : 1.93 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 162.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.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 | 7.369e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6090.2155963037785 (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 : 1.77 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 163.67 us (96.5%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6203.642402897402 (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 : 1.77 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.3%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6322.839656769806 (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 : 1.77 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.2%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6285.752068226559 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 7.157e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6193.046143250295 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 7.099e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6224.37110616787 (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 : 1.97 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 178.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.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.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 | 7.462e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5903.6041173125095 (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.21 us (1.5%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.50 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6118.005912072244 (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 : 1.99 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6105.943902922672 (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 : 1.85 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6314.896068863036 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.19 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 6.904e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6307.876440813142 (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 : 1.93 us (0.5%)
patch tree reduce : 340.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 355.26 us (98.3%)
LB move op cnt : 0
LB apply : 1.04 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 9.035e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4806.640415172889 (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.08 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 145.12 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6316.062435557489 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 158.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6148.392234413215 (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 : 1.76 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.922e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6223.527024459531 (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.29 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.35 us (95.7%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.0%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6077.304592246251 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6058.088740581295 (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 : 1.81 us (1.2%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.03 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.2%)
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 | 7.359e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5809.162589123195 (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.11 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.75 us (95.6%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.022e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6072.527907886461 (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 : 1.91 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 143.87 us (95.8%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5915.199926243711 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6262.393122571079 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.803e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6223.827927957179 (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.05 us (1.3%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 147.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6051.866779536494 (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 : 1.75 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5807.168571478458 (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 : 1.79 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.31 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.2%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5768.065409726358 (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 : 1.79 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.25 us (88.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5893.926094486134 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (65.3%)
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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5789.525085827165 (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 : 1.94 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5783.40011097434 (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 : 1.66 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.06 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5949.982969698962 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5806.77623856962 (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 : 1.73 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.07 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.405e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5611.124873907111 (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.04 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5746.80094610175 (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 : 1.76 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 149.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.3%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6002.623531090621 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6028.288987999903 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.274e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5672.45711054821 (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 : 1.93 us (1.2%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.6%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5840.941467020117 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5826.828305337729 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.30 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 7.491e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5481.438111321638 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.06 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5782.081538182148 (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 : 1.72 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.55 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.069e-04 | 2.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5791.411355579905 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 7.361e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5554.3025428770125 (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 : 1.93 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.254e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5628.577221695912 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5535.133137204342 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.80 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (63.4%)
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 | 7.014e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5806.877328421324 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5770.839948771072 (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.05 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (58.8%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5880.267555936926 (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 : 1.64 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.248e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5599.932708599199 (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.13 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.46 us (95.8%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5723.333474745202 (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 : 1.62 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5758.383333826896 (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 : 1.69 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5740.579320442297 (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 : 1.96 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (60.4%)
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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5780.448633389316 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 144.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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 = (-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 | 7.209e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5604.203369437045 (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.12 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 | 7.320e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5515.443614417482 (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.06 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.24 us (95.4%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5677.393596263314 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (-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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5790.064494292199 (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 : 1.84 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5674.144668998899 (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 : 1.83 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5630.717799185363 (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 : 1.79 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.7%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5614.681102989315 (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 : 1.90 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 173.57 us (96.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.5%)
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 | 7.406e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5432.820898172541 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 7.260e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5539.910887269876 (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.33 us (1.4%)
patch tree reduce : 560.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 157.51 us (95.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (56.3%)
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 | 7.424e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5415.956959317788 (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 : 1.69 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5653.679681775627 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.0%)
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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5617.874275294495 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (54.5%)
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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5547.233898817826 (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 : 1.80 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.49 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 | 6.797e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5910.562958724215 (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.05 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (-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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5722.331614711703 (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 : 1.98 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 6.765e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5938.8235153124415 (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 : 1.86 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5698.237203815829 (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 : 1.66 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (72.6%)
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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5631.551187371851 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.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 = (-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 | 7.379e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5446.594984844621 (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 : 1.93 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.58 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.235e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5555.893813257308 (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 : 1.95 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.02 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.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 = (-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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5525.111946901266 (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 : 1.87 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5672.096136796881 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 150.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5643.657035871129 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5725.747241799189 (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 : 1.99 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.73 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.6%)
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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5689.741955563969 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.74 us (95.7%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.252e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5556.783702290739 (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.15 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 7.050e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5719.857718109847 (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 : 1.86 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (62.0%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5694.442132389802 (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.33 us (1.4%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 6.923e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5832.89689957704 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.34 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5715.377290309242 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5687.827008079986 (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 : 1.77 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.11 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (57.6%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5765.62110052439 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.3%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5687.498718623181 (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 : 1.78 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5751.229046818408 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.5%)
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 | 7.101e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5718.738629990544 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5580.662033491868 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5946.481260686776 (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 : 1.87 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.51 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5608.914802322697 (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 : 1.96 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.51 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5814.552376207819 (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 : 1.71 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5773.142540398536 (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.18 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.109e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5755.290387864507 (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.15 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.2%)
LB compute : 141.54 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.226e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5670.8081642575235 (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 : 1.85 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 148.01 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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,5.551115123125783e-17,0)
sum e = 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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5700.289425356069 (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 : 1.81 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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,-5.551115123125783e-17,0)
sum e = 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 | 7.395e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5558.266729830266 (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 : 1.97 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5958.39687224028 (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.10 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.054e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5846.02003916618 (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 : 1.90 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (67.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 = (-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 | 6.907e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5980.783110969274 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5921.916584403418 (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 : 1.74 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 170.86 us (96.5%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (67.4%)
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 | 7.304e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5676.515641017709 (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.13 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.0%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5748.541329303917 (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.04 us (1.3%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 154.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.8%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5848.206293339025 (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 : 1.71 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.51 us (96.2%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.279e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5730.234323720263 (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 : 1.71 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.57 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5763.010053707606 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.7%)
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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5871.6387375059885 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 144.69 us (96.0%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6022.405159086356 (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.02 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 152.12 us (95.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 = (-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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6046.631559533644 (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.15 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.43 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.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 | 6.875e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6133.559077918138 (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.00 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 142.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.0%)
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 | 6.760e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6252.679124109842 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.6%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5930.113311452601 (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 : 1.90 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 170.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (67.2%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5784.123545558702 (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.03 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 147.34 us (95.7%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5902.478669365864 (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 : 1.77 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 154.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 = (-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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5829.704138407009 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5941.573766800597 (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.06 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 144.93 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6100.779238340634 (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 : 1.92 us (1.2%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.92 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6015.404395505581 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.977e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6185.734026905936 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 = (-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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6249.9037185375755 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.39 us (96.0%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 = (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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6217.8389166395455 (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 : 1.97 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6138.187279996406 (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 : 1.99 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6065.912526972476 (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 : 1.88 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (-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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6231.783156104132 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.84 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (59.6%)
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 | 7.154e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6140.649281567173 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.78 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6234.168411814952 (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 : 1.79 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.2%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6163.231023984911 (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 : 1.74 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.2%)
LB compute : 144.75 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (-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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6378.0163319572275 (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.02 us (0.2%)
patch tree reduce : 340.00 ns (0.0%)
gen split merge : 311.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.0%)
LB compute : 804.03 us (99.1%)
LB move op cnt : 0
LB apply : 1.78 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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 = (-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.369e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3251.9459061606167 (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 : 1.77 us (1.0%)
patch tree reduce : 651.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.341e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6082.898002731663 (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 : 1.90 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 169.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6224.373274617305 (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 : 1.71 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (53.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 = (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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6375.9452272056005 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.04 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.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,0,0)
sum e = 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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6272.702868901729 (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 : 1.68 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (-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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6525.233932003815 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.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 | 7.279e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6243.767660126889 (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 : 1.96 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.23 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.049e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6470.948949908084 (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 : 1.86 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6524.036778482362 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6757.3249161740405 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.4%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6513.876053874393 (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 : 1.65 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.34 us (96.6%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6429.59441250084 (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.02 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.55 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.284e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6382.430857805747 (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.04 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.2%)
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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6562.930382541207 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 = (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 | 7.178e-04 | 2.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6528.3741935180715 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6658.34066495732 (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 : 1.78 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (59.7%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6661.211308307327 (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 : 1.83 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.23 us (96.0%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6716.23518639516 (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.17 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.25 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 7.309e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6518.439264217722 (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 : 1.86 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6732.984435429053 (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 : 1.98 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.50 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (58.7%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7047.075134386741 (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 : 1.82 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.84 us (87.6%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6877.249264704985 (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 : 1.72 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6782.794355426698 (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 : 1.74 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (63.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.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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6758.453155629403 (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 : 1.96 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 = (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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6825.473300876835 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 164.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.9%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6795.3757406806535 (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.10 us (1.4%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 501.00 ns (0.3%)
LB compute : 145.66 us (95.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (68.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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7018.379059688445 (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 : 1.78 us (1.2%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 143.35 us (95.3%)
LB move op cnt : 0
LB apply : 1.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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 = (-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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6936.478745625084 (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 : 1.86 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.8%)
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 | 6.804e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7318.070035755191 (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.24 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.70 us (95.7%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7116.289650785011 (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.17 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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,-5.551115123125783e-17,0)
sum e = 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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7374.891581295794 (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 : 1.80 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7089.169724821751 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7262.918762794383 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.65 us (96.0%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (58.9%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7294.0110823296545 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.17 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.8%)
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 | 7.373e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6948.951929864539 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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.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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7069.721992273177 (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 : 1.87 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7200.164280767151 (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 : 1.79 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7404.382317631266 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.35 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.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 = (-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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7440.2607865911505 (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.02 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.00 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 6.951e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7554.571950511697 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7544.397304960752 (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.10 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 192.40 us (96.6%)
LB move op cnt : 0
LB apply : 1.41 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.436e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7134.133105193538 (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 : 1.89 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.31 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.380e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7225.244975902962 (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 : 1.99 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7583.34225178286 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.39 us (96.1%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (64.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 = (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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7449.390002256893 (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 : 1.88 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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,2.7755575615628914e-17,0)
sum e = 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 | 7.064e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7666.340293132915 (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.04 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.33 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.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 = (-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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7627.543070423046 (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 : 1.88 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7737.954990106294 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.70 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7765.587268097403 (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 : 1.73 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.87 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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.030e-03 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5368.65504777006 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7944.2766004600035 (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 : 1.75 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.98 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 = (-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 | 7.052e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7927.223009164322 (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 : 1.80 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.404e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7590.78445348143 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8102.729266433589 (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.09 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.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 = (-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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8012.227001032404 (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 : 1.97 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.04 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.3%)
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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8421.81536328543 (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 : 1.68 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 = (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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8043.644875363295 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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.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 | 7.010e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8237.913418543245 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 | 7.403e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7844.216646080411 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 144.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8220.77543530603 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (57.2%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8262.942222044514 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.0%)
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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8226.416378339765 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8399.28940011108 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.3%)
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 | 6.920e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8626.467011095332 (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.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.25 us (95.7%)
LB move op cnt : 0
LB apply : 1.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.7%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8790.750009096984 (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.27 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8604.179676310996 (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 : 1.89 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8443.835567323129 (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 : 1.78 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 167.54 us (96.6%)
LB move op cnt : 0
LB apply : 1.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 = (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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8500.557221015371 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.89 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (60.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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8476.546358644562 (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 : 1.95 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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 = (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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8519.134852377847 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.41 us (95.8%)
LB move op cnt : 0
LB apply : 1.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.347e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8450.299386466624 (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 : 1.89 us (1.2%)
patch tree reduce : 580.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 146.73 us (95.6%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8843.112502974398 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8900.512832893448 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9059.341765715182 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9026.103428398214 (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.37 us (1.6%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.57 us (95.6%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.439e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8584.161731068205 (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.12 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 154.51 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (52.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 | 7.347e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8740.675713143262 (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 : 1.99 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.06 us (95.6%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 = (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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9201.276931122065 (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 : 1.82 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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 = (-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 | 7.455e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8711.729564145868 (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 : 1.92 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.67 us (96.3%)
LB move op cnt : 0
LB apply : 1.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9063.515661154373 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 143.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9324.88640809992 (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 : 1.75 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.80 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9118.269199569711 (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 : 1.78 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.1%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9335.842633337495 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.61 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 = (0,0,0)
sum e = 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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9465.710318318557 (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 : 1.74 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.45 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9679.105713075733 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 | 6.876e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9823.272281984848 (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.02 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.70 us (95.9%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9642.69349487522 (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.00 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9607.288383569645 (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 : 1.67 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 161.45 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9493.015562708424 (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 : 1.76 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.1%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9591.065003270303 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (47.9%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9814.596864027453 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 145.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9906.790751545765 (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 : 1.75 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.417e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9463.867273621254 (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.03 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.42 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10059.735415003135 (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 : 1.76 us (1.1%)
patch tree reduce : 691.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9804.835060412808 (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 : 1.96 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9904.635374288624 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 6.822e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10513.536308440687 (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.01 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 6.892e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10461.621780710046 (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 : 1.73 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.78 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10113.668209319996 (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 : 1.77 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.60 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10369.261599348492 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.6%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10044.67001887656 (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 : 1.76 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10568.098178242395 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 140.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.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,-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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10513.805317977944 (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 : 1.94 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.85 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.963e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10683.962979778731 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.27 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.528e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9932.971486389977 (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 : 1.77 us (1.1%)
patch tree reduce : 510.00 ns (0.3%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 152.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 9.119e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8241.145705771229 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (0,0,0)
sum e = 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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10723.228585876303 (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 : 2.08 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10877.993204569635 (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 : 1.81 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.41 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (65.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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10789.736208270404 (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 : 2.32 us (1.5%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.96 us (95.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 6.888e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11128.922359310829 (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.37 us (1.6%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.04 us (95.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11000.782314312604 (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 : 1.74 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10568.458350137502 (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 : 1.76 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.06 us (87.5%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.8%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10704.752717923719 (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 : 1.99 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 154.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (65.4%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11003.898103817377 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.78 us (95.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11100.675364401395 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.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,-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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10872.472195246599 (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 : 1.91 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 152.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.5%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11082.670531481364 (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.11 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.193e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11062.506014401737 (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.08 us (1.4%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 651.00 ns (0.4%)
LB compute : 142.56 us (95.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11484.607190094353 (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.00 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 143.30 us (95.2%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.799e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11808.63883770961 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11291.361797551614 (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.41 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.4%)
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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11102.128592647721 (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 : 1.82 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.01 us (96.4%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.6%)
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 | 7.248e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11219.583221254577 (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 : 1.73 us (1.0%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.52 us (96.5%)
LB move op cnt : 0
LB apply : 1.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11221.689957894836 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.51 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 | 7.196e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11395.451239372562 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11670.42152083972 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11781.661733939553 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11501.029397857903 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11844.61483679688 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.9%)
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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11536.727582474574 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.09 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11878.445022557742 (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 : 1.92 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12410.5806525598 (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 : 1.97 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 = (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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12368.729844026078 (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 : 1.87 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.257e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11693.077999444866 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.7%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11870.335660436438 (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 : 1.76 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.89 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12286.441437022655 (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 : 1.73 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.46 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12109.594730044448 (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 : 1.98 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12365.368834626046 (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 : 1.79 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.97 us (96.1%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (68.0%)
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 | 7.338e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11758.102952191271 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12466.559963378779 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.798e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12769.263559180496 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.7%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12775.832269494334 (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 : 1.67 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.05 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.1%)
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 | 6.980e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12509.56904588915 (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 : 1.82 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12420.899832917834 (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.14 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.55 us (95.9%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.349e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11948.883961585394 (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 : 1.93 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.037e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12511.67108162344 (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 : 1.90 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (65.4%)
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 | 7.525e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11730.780459297688 (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.06 us (1.3%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12580.111691962951 (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 : 1.82 us (1.1%)
patch tree reduce : 400.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.34 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.371e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12034.508777984445 (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 : 1.81 us (1.2%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.100e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12523.570915844462 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.98 us (95.8%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12695.145250298106 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.2%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12916.665868144357 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.829e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13107.640660801448 (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 : 1.76 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.3%)
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 | 6.940e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12923.961437462474 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.36 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (65.3%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12239.126788258793 (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 : 1.81 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 156.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.251e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12417.598694169654 (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.10 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.92 us (95.7%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 7.185e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12555.756613046238 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12573.833628992741 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12393.236598099655 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12758.425958398942 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.974e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13018.912947494826 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.72 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12895.598759175917 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.53 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13336.707277895195 (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 : 1.68 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 162.37 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12809.993738453806 (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 : 1.85 us (1.1%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.4%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12957.703780846752 (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 : 1.61 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.36 us (96.3%)
LB move op cnt : 0
LB apply : 911.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.5%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12961.459349057324 (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 : 1.80 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.21 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.7%)
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 | 7.378e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12395.548993446198 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.222e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12673.459497466163 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12936.172904665911 (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.30 us (1.5%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 146.35 us (95.5%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12727.845212767741 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 149.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13379.612522152098 (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 : 1.94 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 150.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13312.55423339458 (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 : 1.94 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.22 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12920.703976010967 (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.11 us (1.4%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 149.26 us (95.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13048.8084660596 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.4%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13158.670188173073 (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 : 1.69 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.021e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13095.106493710324 (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.02 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13014.903722658706 (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.08 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 169.97 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.304e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12591.533969517563 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12902.319414973163 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.52 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12883.347883538663 (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 : 1.87 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.313e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12575.229882865042 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,2.7755575615628914e-17,0)
sum e = 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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13204.997939309227 (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.49 us (1.6%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.92 us (95.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 | 6.899e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13323.067134246015 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13303.936004149813 (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 : 1.73 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 159.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.0%)
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 | 7.276e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12623.71028320525 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13113.929233665542 (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 : 1.86 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.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 | 7.220e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12707.459617887822 (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 : 1.65 us (1.1%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.6%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12970.250888950191 (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 : 1.91 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12753.56183093345 (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 : 1.90 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.4%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12648.440034695244 (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 : 1.84 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.397e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12364.766583045166 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.00 us (95.7%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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,0,0)
sum e = 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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12914.434277958248 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.51 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 | 6.979e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13079.850193535867 (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.14 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13427.955814928653 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.52 us (95.6%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13056.63888926042 (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 : 1.68 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.82 us (96.5%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.4%)
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 | 7.097e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12817.066663705558 (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 : 1.86 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12657.58913953542 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.9%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12665.261510853737 (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 : 1.80 us (1.2%)
patch tree reduce : 530.00 ns (0.3%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.48 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12734.176549777767 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12707.19512067574 (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.04 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.75 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12665.179328383028 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.86 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12924.967339814826 (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.38 us (1.6%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.07 us (95.5%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12762.098027558033 (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.08 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12690.925797760277 (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.07 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 153.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12600.888216313606 (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 : 1.67 us (0.9%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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 = (0,0,0)
sum e = 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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12534.010425692499 (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.56 us (1.5%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.04 us (95.6%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (59.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 = (-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 | 7.447e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11996.558855857254 (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 : 1.75 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12496.396114188892 (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 : 1.84 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (0,0,0)
sum e = 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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12531.330847755451 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12727.54397094444 (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 : 1.89 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 141.54 us (95.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.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,-2.7755575615628914e-17,0)
sum e = 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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12896.450664538599 (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.05 us (1.3%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 521.00 ns (0.3%)
LB compute : 148.74 us (95.3%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (52.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.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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12792.79272360267 (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 : 1.86 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 170.71 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12353.666568091294 (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.35 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.308e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12036.16025868539 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.14 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12333.72737064875 (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 : 1.63 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 | 8.035e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10894.44004981393 (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 : 1.73 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.00 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12190.757612751115 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.61 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12186.73124061802 (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 : 2.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12266.414922371423 (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 : 1.96 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.305e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11857.506920203248 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.236e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11937.045660164733 (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 : 1.91 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.83 us (92.6%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12353.73672933789 (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 : 1.88 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.78 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12430.055224212425 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12193.263777325225 (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.02 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 159.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (64.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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12192.997278554036 (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 : 1.80 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.71 us (96.2%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.6%)
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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11858.28498144027 (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 : 1.73 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.27 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (56.8%)
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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11714.341969490355 (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 : 1.73 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.2%)
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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11918.689891687916 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.37 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11935.296568250807 (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 : 1.94 us (1.3%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.06 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11937.430574644828 (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.05 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.136e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11747.852640018715 (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 : 1.97 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11869.19993906218 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.6%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11931.115390203538 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (59.0%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12145.992397558699 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.15 us (96.4%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.7%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11845.00662136075 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.22 us (96.2%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (59.9%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11743.882909686388 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.95 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.207e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11403.452854620762 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.7%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11613.073693735596 (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 : 1.78 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.7%)
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 | 7.503e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10879.19981198204 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 7.376e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11028.43806389849 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.62 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.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 = (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 | 7.330e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11058.986897022274 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.13 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (66.9%)
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 | 7.090e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11391.783221928476 (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 : 1.69 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 = (-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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11535.544927258712 (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.05 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 146.21 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.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 = (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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11451.16817013145 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 = (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 | 6.842e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11680.184666569263 (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 : 1.95 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 169.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (58.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 = (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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11142.362047480154 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11158.559148288552 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.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 = (-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 | 7.258e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10891.010140633896 (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.11 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10896.387593906022 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.2%)
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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10731.120005388751 (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 : 1.91 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10919.44618280405 (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 : 1.78 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10857.756857678223 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.59 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 6.727e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11535.015535895527 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.46 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10962.607790196771 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11057.955513109813 (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 : 1.99 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 161.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10862.86167492525 (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 : 1.91 us (1.1%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 471.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 159.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.6%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10488.433455413158 (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 : 1.90 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.4%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10894.718327954271 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 159.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10577.621327342227 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.19 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.4%)
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 | 7.274e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10391.130367571575 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (53.1%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10701.958796582468 (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.63 us (1.6%)
patch tree reduce : 521.00 ns (0.3%)
gen split merge : 450.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 152.71 us (95.3%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (63.0%)
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 | 7.312e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10259.611035503822 (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 : 1.97 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.81 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10502.058849124342 (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.09 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (56.5%)
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 | 6.891e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10804.649150116009 (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 : 1.96 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.78 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.894e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10759.488948332244 (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 : 1.90 us (1.1%)
patch tree reduce : 621.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 172.35 us (96.1%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (63.6%)
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 | 7.418e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9961.713294940664 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 159.23 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 6.981e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10544.9133978656 (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.12 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.37 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.276e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10079.559322969735 (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 : 1.75 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.24 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10343.691787298572 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 155.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (59.5%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10148.674427429125 (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 : 1.70 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9912.686944643241 (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.05 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9887.807837424129 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (-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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10022.648975626362 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10341.870092634703 (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.07 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9967.743027902798 (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 : 1.88 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 143.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10170.810485517448 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.3%)
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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9892.700457107265 (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 : 1.84 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.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 = (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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9917.875418833491 (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 : 1.65 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 147.23 us (96.3%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (56.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 = (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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10038.507143413726 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.7%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9815.632658855866 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.48 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10005.651837098965 (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 : 1.72 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.50 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10044.353526184294 (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 : 1.91 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.12 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.8%)
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 | 7.357e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9436.310026334797 (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 : 1.93 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9622.02467838597 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9703.166792422839 (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.33 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.45 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 6.953e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9880.482838014981 (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.05 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9784.829030011117 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.26 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9711.287623787777 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9407.232040419578 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9573.114848554049 (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 : 1.88 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 511.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.68 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (64.4%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9459.9073775467 (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 : 1.87 us (1.1%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.84 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9231.10134117138 (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 : 1.72 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.32 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9319.13135775178 (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 : 1.76 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.4%)
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 | 7.387e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9052.363276203489 (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.18 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9410.257116385677 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.35 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.3%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9164.553024474775 (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 : 1.88 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.27 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (47.8%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9691.537621253714 (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.08 us (1.4%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.11 us (95.5%)
LB move op cnt : 0
LB apply : 1.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9615.831393541213 (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 : 1.88 us (1.1%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.97 us (96.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.4%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9156.160373451085 (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 : 1.65 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.42 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 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 | 7.336e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8942.6686497292 (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 : 1.87 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.1%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9254.19614040259 (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 : 1.85 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.7%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9000.662506053526 (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.36 us (1.5%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9082.497258537966 (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.26 us (1.5%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 500.00 ns (0.3%)
LB compute : 145.39 us (95.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (72.7%)
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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9027.386172207978 (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 : 1.75 us (1.1%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 146.38 us (95.4%)
LB move op cnt : 0
LB apply : 1.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9142.164822620294 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 7.270e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8860.344065599154 (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.17 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.18 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (56.5%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9390.840161771252 (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 : 1.97 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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 = (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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8904.508479823546 (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 : 1.94 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9073.734048592727 (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 : 1.90 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.65 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8961.597631683844 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.96 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.9%)
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 | 7.301e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8695.786889049077 (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 : 1.77 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8742.987825503269 (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 : 1.72 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.3%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8888.05399063175 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8923.094748828104 (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 : 1.72 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.48 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8825.636607461814 (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 : 1.88 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 144.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9010.459428660406 (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 : 1.90 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (66.7%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8897.299701370212 (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.19 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.3%)
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 | 6.858e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9078.351815299779 (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.03 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.43 us (95.9%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.0%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8768.824930696048 (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 : 1.79 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.72 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.097e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8723.950506894747 (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 : 1.93 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.00 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8751.246347776225 (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 : 1.83 us (1.1%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 163.14 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8562.536063242558 (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 : 1.99 us (1.4%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.77 us (95.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.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 = (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 | 7.276e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8441.033354462616 (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.15 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 160.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.303e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8386.589068363575 (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 : 1.92 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.18 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (67.5%)
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 | 7.410e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8243.906834313293 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8615.780986583593 (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 : 1.86 us (0.5%)
patch tree reduce : 350.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 382.44 us (98.4%)
LB move op cnt : 0
LB apply : 1.26 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (-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 | 9.468e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6417.375895494558 (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 : 1.76 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8325.817942642998 (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 : 1.95 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (68.7%)
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 | 7.406e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8160.226340214889 (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 : 1.81 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.49 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8550.093878736616 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8539.946619597704 (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.04 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.4%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8453.484993606973 (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 : 1.95 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8498.692571563663 (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 : 1.89 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.24 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8252.681699023331 (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.04 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 173.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (67.6%)
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 | 7.348e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8094.131262512525 (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 : 1.70 us (1.0%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (63.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 | 7.387e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8030.611761784811 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8304.887425016432 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.52 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8232.745378709935 (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 : 1.82 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.6%)
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 | 7.017e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8386.252016038805 (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 : 1.78 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.54 us (96.0%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.2%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8401.111912361554 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.40 us (95.7%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.078e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8270.541253111222 (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 : 1.95 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.35 us (95.7%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8359.671853904521 (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.30 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.223e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8061.582613564473 (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.00 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.32 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8365.76823825202 (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 : 1.93 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8231.766471791794 (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 : 1.77 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.98 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 = (-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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8026.473853573662 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8049.05162858728 (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 : 1.78 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.13 us (95.7%)
LB move op cnt : 0
LB apply : 1.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8104.29632010454 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.43 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8181.647910520595 (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.16 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 163.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.442e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7682.998484702078 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7956.1882485143315 (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 : 1.80 us (0.9%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 189.17 us (96.8%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.8%)
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 | 7.579e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7506.6621050124595 (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 : 1.96 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8171.071320510217 (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.33 us (1.5%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.51 us (95.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (45.6%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7917.89857110776 (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 : 1.97 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 142.66 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.9%)
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 | 6.757e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8356.912324077495 (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 : 1.72 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 170.20 us (96.5%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7902.000951599358 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.63 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.5%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8037.881469574919 (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 : 1.77 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 142.08 us (95.8%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.3%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7830.961065188065 (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 : 1.90 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.35 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 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.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 | 7.209e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7758.317595251588 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.19 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.7%)
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 | 7.209e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7740.498761123017 (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 : 1.87 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7849.187394839026 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.95 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7890.577784598904 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.71 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7902.171913269234 (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.02 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7846.996106233436 (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.06 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.13 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.7%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7737.387310184765 (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.09 us (1.4%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.61 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.2%)
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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7989.313393188822 (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.16 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 us (68.3%)
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 | 7.351e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7479.12447035673 (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 : 1.85 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 171.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (60.6%)
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 | 7.296e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7520.350157627568 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.1%)
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 | 7.194e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7613.372220385592 (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 : 1.95 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.53 us (95.8%)
LB move op cnt : 0
LB apply : 1.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7607.677953491657 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.94 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7796.1578610837 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.94 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7655.587559133881 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.6%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7729.69343349542 (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 : 1.82 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.1%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7750.429793350801 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.82 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7771.721797236059 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7807.554151791207 (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 : 15.11 us (8.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.1%)
LB compute : 157.64 us (89.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.6%)
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 | 7.396e-04 | 2.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7309.292290966364 (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 : 1.74 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (61.8%)
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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7510.805315087107 (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 : 1.69 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 141.42 us (96.1%)
LB move op cnt : 0
LB apply : 882.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 6.934e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7776.175922797166 (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 : 1.65 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.99 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7473.653973798851 (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 : 1.73 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.53 us (96.4%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 802.00 ns (57.6%)
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 | 7.299e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7368.900632652602 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.24 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7578.043155082893 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 7.370e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7283.473938117631 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7660.770145113558 (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 : 1.71 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.7%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7646.332599455654 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7818.568079276404 (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.36 us (1.6%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.42 us (95.5%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 | 6.958e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7688.139208525665 (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 : 1.63 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.21 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.9%)
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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7375.028879317494 (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 : 1.90 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7492.419401165899 (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 : 1.74 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.90 us (95.7%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7504.144454249319 (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 : 1.66 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7551.801231445822 (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 : 1.78 us (1.1%)
patch tree reduce : 310.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.369e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7240.58040187479 (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 : 1.86 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.87 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7367.120825611103 (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 : 1.80 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.94 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7579.581950259145 (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.02 us (1.1%)
patch tree reduce : 410.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (68.1%)
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 | 7.229e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7375.813466095753 (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 : 1.88 us (1.2%)
patch tree reduce : 510.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (54.9%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7652.572675009419 (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 : 1.92 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 561.00 ns (0.4%)
LB compute : 146.66 us (94.9%)
LB move op cnt : 0
LB apply : 1.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7746.942527224471 (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 : 1.74 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.2%)
LB compute : 160.83 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (-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 | 7.334e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7270.357349575195 (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.30 us (1.3%)
patch tree reduce : 411.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.9%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7445.999607939234 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.99 us (96.0%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.213e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7393.8150690960865 (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 : 1.87 us (1.2%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.123e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7489.804868310245 (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 : 1.69 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7444.170441580963 (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 : 1.71 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7454.0461006816995 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.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 | 7.310e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7306.731977177604 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.05 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7601.446606558452 (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 : 1.91 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7819.701055827416 (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.15 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.111e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7524.177621883508 (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 : 1.93 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 6.840e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7827.571566831857 (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 : 1.68 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.61 us (96.5%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 = (-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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7561.127714775159 (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.22 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 156.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 6.946e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7721.27057959486 (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 : 1.63 us (1.0%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.9%)
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 | 7.408e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7246.383839175208 (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 : 1.98 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.04 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (51.2%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7562.920300191941 (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 : 1.72 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.09 us (93.9%)
LB move op cnt : 0
LB apply : 2.68 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.130e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7543.684846940372 (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.09 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7532.023949008113 (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 : 1.88 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 144.42 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7734.306707594775 (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.05 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.98 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.147e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7551.258959041255 (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 : 1.88 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.79 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.9%)
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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7803.900113826677 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.92 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.927e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7811.492297550705 (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 : 1.76 us (0.9%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.1%)
LB compute : 182.59 us (96.7%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.453e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7270.109586015437 (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.01 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 160.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7620.481144704936 (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 : 1.78 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 177.40 us (96.5%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 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.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 | 7.384e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7359.278611964125 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.9%)
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 | 7.298e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7458.291546399368 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.21 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.3%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7590.152114263697 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.7%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7773.238707664799 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.28 us (96.1%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (57.9%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7772.639714104639 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.37 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7602.2510405403145 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.29 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.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 | 7.218e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7604.453230843876 (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.16 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.5%)
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 | 6.980e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7878.711741127425 (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 : 1.99 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 153.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (65.1%)
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 | 6.970e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7904.5509917161635 (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 : 1.74 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7832.463242441902 (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 : 1.72 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7825.793094298959 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.446e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7443.504367178553 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.79 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7811.029858665528 (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 : 1.75 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.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 = (-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 | 7.317e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7605.666587462749 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7890.103572782264 (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.05 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.00 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.0%)
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 | 7.311e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7644.881471685721 (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 : 1.71 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.5%)
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 | 8.576e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6532.0837868679255 (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.02 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7780.722423624609 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7992.839205405505 (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 : 1.81 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.08 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 6.751e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8354.958641109573 (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.12 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 144.12 us (95.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.844e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8260.511019155403 (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 : 1.86 us (1.2%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 = (-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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8114.560021335802 (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 : 1.81 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.5%)
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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7967.610066390121 (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.37 us (1.6%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.60 us (95.7%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.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.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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7958.068659063365 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (73.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 = (-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 | 7.217e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7910.835542400284 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.08 us (96.0%)
LB move op cnt : 0
LB apply : 1.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.388e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7747.287489639413 (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.45 us (1.5%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 158.71 us (95.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.254e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7910.00798528528 (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 : 1.68 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 154.95 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 = (-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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8085.352413287996 (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 : 1.78 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.4%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8199.942217817174 (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 : 1.92 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (56.9%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8080.16850197731 (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 : 1.93 us (1.3%)
patch tree reduce : 450.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.3%)
LB compute : 146.18 us (95.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 6.901e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8402.539088443982 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.915e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8408.120496011139 (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 : 1.71 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.348e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7933.693939719742 (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 : 1.88 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.39 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8294.600680167949 (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.12 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8279.413534612664 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (54.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 = (-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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8345.437679681007 (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 : 1.68 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.34 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.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 = (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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8159.771909978307 (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 : 1.90 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8154.875607390856 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (54.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 = (-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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8373.56724612785 (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 : 1.89 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.990e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8504.566688813255 (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 : 1.80 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 145.54 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.6%)
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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8316.780753297353 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.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 = (-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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8720.567152017511 (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 : 1.67 us (0.9%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 15.98 us (8.7%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 161.11 us (87.9%)
LB move op cnt : 0
LB apply : 1.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.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 = (-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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8428.57637277807 (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 : 1.87 us (1.1%)
patch tree reduce : 421.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8303.050008586257 (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 : 1.76 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.06 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.4%)
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 | 6.957e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8668.993594236057 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.77 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 7.159e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8448.522719995008 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.70 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.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 = (-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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8358.373167783177 (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.10 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8534.764520198374 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 7.255e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8410.47416765969 (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 : 1.92 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.204e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8496.088222418637 (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 : 1.82 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8933.77120220238 (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 : 1.91 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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,2.7755575615628914e-17,0)
sum e = 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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8757.466826252019 (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.16 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 7.195e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8582.744443970663 (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 : 1.95 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 173.25 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.226e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8570.614537960022 (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 : 1.80 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 159.86 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8668.719620970604 (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 : 1.94 us (1.3%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 551.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.10 us (95.6%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.2%)
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 | 6.965e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8945.635293775487 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.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 = (-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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8749.152459238372 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8755.875433709281 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8638.291963030824 (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 : 1.91 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 = (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 | 7.385e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8537.522477884077 (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.09 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.03 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8816.0927830533 (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.11 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.25 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (41.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 = (-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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9141.919712233652 (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.06 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 172.30 us (95.8%)
LB move op cnt : 0
LB apply : 1.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8853.556360689208 (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.08 us (1.3%)
patch tree reduce : 681.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.0%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8995.074459478 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 460.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.97 us (95.7%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 = (-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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9251.78372251883 (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 : 1.95 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 157.80 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.5%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8938.25645194396 (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 : 1.90 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.25 us (96.2%)
LB move op cnt : 0
LB apply : 992.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (63.4%)
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 | 7.215e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8922.078554264763 (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 : 1.84 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.64 us (96.1%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (62.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 = (-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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8980.003394589805 (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.01 us (1.3%)
patch tree reduce : 802.00 ns (0.5%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 531.00 ns (0.4%)
LB compute : 143.63 us (94.9%)
LB move op cnt : 0
LB apply : 1.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (46.2%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9159.59860610961 (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 : 1.74 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 144.86 us (95.8%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.1%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9041.770663670057 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.31 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.209e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9034.867521829 (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.26 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.60 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (54.9%)
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 | 7.252e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9007.537029254114 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9496.723255103987 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 781.00 ns (57.3%)
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 | 6.780e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9689.360918097404 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.16 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9403.23137063591 (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.01 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 170.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (67.3%)
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 | 7.337e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9005.88591847003 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (60.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 = (-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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9333.813090246982 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (60.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,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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9251.669932939816 (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 : 1.91 us (1.3%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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,8.326672684688674e-17,0)
sum e = 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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9414.038692453936 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.65 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.0%)
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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9359.248472000285 (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 : 1.66 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.326e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9146.018950691352 (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 : 1.88 us (1.3%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.77 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9618.39681829264 (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 : 1.80 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.58 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.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,1.3877787807814457e-17,0)
sum e = 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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9657.143752263948 (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.14 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.8%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9583.181498793028 (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.12 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9837.234989354054 (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.00 us (1.2%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.65 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9663.504040704558 (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 : 1.76 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.10 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.331e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9288.838800760523 (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.21 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.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 | 7.320e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9326.880883613578 (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.25 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.79 us (95.7%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.4%)
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 | 7.162e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9558.304855391583 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.98 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.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 = (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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9631.717408662575 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.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 = (-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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9599.39869472867 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.36 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (53.5%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9848.542730720463 (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 : 1.79 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.61 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9480.35619365946 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (56.1%)
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 | 6.762e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10251.672688910287 (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 : 1.96 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9602.292079725386 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.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 = (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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10149.28472369759 (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.18 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.5%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9813.328712284425 (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 : 1.80 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.61 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9939.786651094795 (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 : 1.81 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.05 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (63.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 | 7.425e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9448.60023929204 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.76 us (95.8%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.038e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9990.949760209509 (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 : 1.72 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.239e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9736.61066266992 (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 : 1.82 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10087.839032260637 (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.05 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.39 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9789.801287302253 (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 : 1.79 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.33 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10163.009395830739 (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.09 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.26 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (55.9%)
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 | 6.946e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10235.78091682294 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.6%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10117.530769873942 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 158.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10049.102143472903 (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 : 1.94 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (66.5%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10205.44723986345 (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.10 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.257e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9878.793688765547 (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 : 1.73 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.13 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.4%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10035.833429230182 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 = (-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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10024.58868918831 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10158.852433236372 (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 : 1.78 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.32 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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.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 | 6.947e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10399.37045630804 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 143.25 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10273.520460167001 (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.18 us (1.4%)
patch tree reduce : 631.00 ns (0.4%)
gen split merge : 581.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 145.76 us (95.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.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 = (-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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10512.50965562261 (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.08 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10317.12714475813 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10675.452706860098 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (72.9%)
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 | 7.393e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9857.217295079698 (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 : 1.89 us (0.8%)
patch tree reduce : 470.00 ns (0.2%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 237.85 us (97.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.8%)
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 | 8.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8973.114383385779 (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.18 us (0.6%)
patch tree reduce : 330.00 ns (0.1%)
gen split merge : 441.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 350.00 ns (0.1%)
LB compute : 356.58 us (98.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.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 = (-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 | 9.290e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7870.324770634003 (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 : 14.79 us (4.0%)
patch tree reduce : 381.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 349.97 us (94.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (61.7%)
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 | 9.579e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7644.707520824431 (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.07 us (0.7%)
patch tree reduce : 350.00 ns (0.1%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 303.18 us (98.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (56.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,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 | 8.926e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8216.020876281826 (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.27 us (0.6%)
patch tree reduce : 461.00 ns (0.1%)
gen split merge : 321.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.1%)
LB compute : 343.38 us (98.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 9.247e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7942.584397780617 (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 : 1.82 us (0.6%)
patch tree reduce : 351.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.1%)
LB compute : 298.77 us (98.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (61.2%)
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 | 8.738e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8416.754684744563 (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 : 1.89 us (0.7%)
patch tree reduce : 331.00 ns (0.1%)
gen split merge : 411.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 277.00 us (97.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 8.640e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8524.76281465701 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10362.583563882461 (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 : 1.93 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 155.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (-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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10202.64046247008 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10508.196475093295 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.66 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.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 = (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 | 7.078e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10459.191259931144 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (70.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,-5.551115123125783e-17,0)
sum e = 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 | 6.954e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10657.55617423725 (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 : 3.01 us (1.8%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.48 us (95.5%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.0%)
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 | 7.313e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10146.477891183677 (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 : 1.89 us (0.3%)
patch tree reduce : 341.00 ns (0.1%)
gen split merge : 330.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.1%)
LB compute : 546.52 us (98.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (58.1%)
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.105e-03 | 0.2% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6721.796151653815 (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 : 2.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.37 us (95.7%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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,-1.3877787807814457e-17,0)
sum e = 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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10523.005526343764 (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.02 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.9%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10613.813088099203 (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 : 1.96 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.14 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.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 = (-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 | 7.046e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10573.919368015082 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.54 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10526.482100165436 (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 : 1.92 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.73 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (54.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 = (-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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10465.257872409624 (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 : 1.73 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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 = (-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 | 7.050e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10594.749167045244 (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 : 1.95 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 = (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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10434.939928787935 (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 : 1.77 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10566.699303838179 (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 : 1.69 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10488.968660506815 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10310.651752548969 (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.01 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.06 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (59.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,-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 | 7.224e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10375.435487640696 (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 : 1.80 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.46 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.9%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10495.932666795636 (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.11 us (1.4%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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.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 | 7.073e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10607.370709389565 (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.08 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.37 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.335e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10232.561731461888 (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.13 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 176.33 us (96.3%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (67.8%)
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 | 7.254e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10351.212157185251 (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 : 1.90 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.94 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.9%)
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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10424.58605169703 (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 : 1.86 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10587.663446000364 (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 : 1.79 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.83 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.0%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10629.912009952459 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.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 = (-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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10428.473509342935 (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 : 1.89 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (62.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 = (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 | 7.523e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9994.07266191955 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.76 us (95.6%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10581.88892941262 (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.03 us (1.3%)
patch tree reduce : 621.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.77 us (95.8%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (61.1%)
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 | 7.030e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10695.556972194881 (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 : 1.79 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.91 us (96.0%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.4%)
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 | 6.856e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10968.146333431541 (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 : 1.87 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.00 us (95.6%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 6.872e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10941.828201709928 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.39 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.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 = (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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10654.379182853885 (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 : 1.82 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 174.87 us (96.5%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.209e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10427.985520850638 (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.04 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.9%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10519.291800748542 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 491.00 ns (0.3%)
LB compute : 144.73 us (94.8%)
LB move op cnt : 0
LB apply : 1.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.9%)
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 | 6.993e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10746.09875228154 (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 : 1.79 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.370e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10192.16804074363 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.75 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.6%)
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 | 7.411e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10132.620651390278 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.79 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10704.807404766356 (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 : 1.86 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 154.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (60.4%)
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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10318.563396337348 (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.00 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.2%)
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 | 6.932e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10819.54599115925 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.825e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10982.875432432906 (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 : 1.94 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.97 us (96.0%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.779e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11051.209341825264 (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 : 1.71 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.01 us (96.3%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (72.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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10401.131819577367 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.22 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.5%)
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 | 7.447e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10047.10783391039 (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 : 1.86 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.11 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10599.697682336186 (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 : 1.65 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.63 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (61.3%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10508.339899861712 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.7%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10556.619948625446 (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 : 1.66 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10586.682133572145 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 152.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.8%)
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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10446.259220524016 (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 : 1.83 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 170.22 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.9%)
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 | 7.552e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9858.45207207873 (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 : 1.90 us (1.2%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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.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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10840.24945375683 (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.26 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.99 us (95.6%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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,0,0)
sum e = 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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10640.627185614016 (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.04 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.23 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.8%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10911.94594688519 (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.24 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.80 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.3%)
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 | 7.350e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10085.064177662594 (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 : 1.80 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 164.96 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.6%)
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 | 7.215e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10262.517936295255 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.09 us (96.2%)
LB move op cnt : 0
LB apply : 891.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.3%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10482.077820446793 (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 : 1.87 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (54.2%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10511.459152940886 (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 : 3.98 us (2.6%)
patch tree reduce : 590.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 142.29 us (94.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.038e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10479.121906981474 (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 : 1.91 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.78 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10302.594512544158 (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 : 1.94 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.4%)
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 | 7.298e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10078.589194470736 (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 : 1.95 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.49 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.8%)
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 | 7.307e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10050.57294613859 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.75 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.8%)
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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10409.918394423885 (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.09 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 153.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 = (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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10395.631532303905 (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 : 1.86 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 6.833e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10697.535799261703 (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 : 1.69 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 166.20 us (96.6%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.9%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10293.156134611509 (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 : 1.73 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 157.65 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (65.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 = (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 | 7.161e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10174.450250063886 (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 : 1.82 us (1.2%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.8%)
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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9981.89553774862 (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 : 1.90 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.19 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10334.795535964693 (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.07 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9991.638404390842 (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 : 1.76 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9959.013899055497 (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 : 1.98 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.1%)
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 | 7.197e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10032.019389162655 (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.06 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.31 us (95.9%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.240e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9952.797209976874 (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 : 1.66 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.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 = (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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10032.791160280425 (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.24 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.61 us (95.7%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.898e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10403.595036277768 (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.10 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 6.960e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10289.706570040602 (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 : 1.73 us (0.9%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 176.82 us (96.6%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.5%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9993.31338134902 (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 : 1.76 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 166.73 us (96.5%)
LB move op cnt : 0
LB apply : 1.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.6%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9847.953594103572 (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 : 1.88 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.42 us (96.1%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (65.4%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9983.335881290543 (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 : 1.68 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.56 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.4%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9859.35148079796 (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 : 1.92 us (1.3%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 471.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.89 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9956.021379274429 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.70 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10011.063760129813 (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 : 1.70 us (1.1%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.60 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 6.989e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10088.56461827547 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.59 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (59.4%)
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 | 7.342e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9579.998689688717 (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.13 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.05 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.0%)
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 | 6.973e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10061.972675524774 (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.19 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.24 us (95.5%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (73.7%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9877.44170747332 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.81 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9999.270633067206 (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 : 1.81 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 168.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.5%)
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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9774.667442563781 (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 : 1.74 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.9%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9942.496958146587 (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 : 1.69 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.3%)
LB compute : 144.60 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.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 | 7.289e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9504.925736036193 (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 : 1.79 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 179.08 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.563e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9136.319383886388 (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.07 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.333e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9398.184082121845 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.06 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9701.817176647051 (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.18 us (1.4%)
patch tree reduce : 500.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9709.464567360597 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.1%)
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 | 7.265e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9407.355121477805 (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 : 1.94 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.67 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.4%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9447.940672754403 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.02 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9675.317749458492 (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.11 us (1.4%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.47 us (95.8%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 6.847e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9896.781773045952 (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 : 1.71 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.37 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (66.9%)
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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9523.339296973265 (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 : 1.91 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (48.6%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9460.449016401044 (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 : 1.68 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 143.26 us (96.1%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (60.7%)
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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9253.88307963326 (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 : 1.92 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.72 us (95.7%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.0%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9379.035631083252 (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 : 1.83 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.68 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9512.288570283632 (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 : 1.81 us (1.2%)
patch tree reduce : 530.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 6.879e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9675.48569438237 (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.12 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.04 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.7%)
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 | 7.293e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9098.35073740982 (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 : 1.91 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.84 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.7%)
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 | 6.846e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9662.296659363219 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9344.641951840325 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.3%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9553.910668613546 (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 : 1.87 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 167.88 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (63.0%)
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 | 7.343e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8922.562248023625 (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 : 1.74 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.04 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.1%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9089.897676692563 (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 : 1.83 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9228.596402517212 (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 : 1.95 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 | 7.100e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9137.615938656056 (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 : 1.69 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8809.334443717933 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9160.990653661212 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 150.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 791.00 ns (53.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 = (-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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9056.80947242171 (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 : 1.75 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.013e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9127.679860236887 (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 : 1.84 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 6.920e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9219.523360973579 (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.09 us (1.4%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9166.377665938038 (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.01 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 158.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (65.9%)
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 | 7.203e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8796.487229764387 (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 : 1.95 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 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,-4.336808689942018e-19,0)
sum e = 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 | 7.438e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8489.26574257332 (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 : 1.67 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.32 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.3%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8740.524796993863 (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 : 1.70 us (1.1%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.09 us (95.5%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (59.4%)
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 | 7.034e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8914.306558958859 (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.03 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 163.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.218e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8656.755035215898 (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 : 1.73 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8715.007862554847 (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 : 1.92 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.4%)
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 | 7.310e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8486.994242820134 (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 : 1.97 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8573.779680389363 (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.32 us (1.5%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.91 us (95.7%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8371.143341288353 (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 : 1.95 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 164.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.1%)
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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8433.23677685077 (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 : 1.93 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 500.00 ns (0.3%)
LB compute : 145.30 us (95.1%)
LB move op cnt : 0
LB apply : 1.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (62.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 | 6.863e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8910.987452405036 (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.05 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8472.64126533721 (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.20 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.23 us (95.7%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.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 = (-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 | 6.887e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8814.755424322515 (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 : 1.93 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.47 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8392.39206002183 (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 : 1.81 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 173.07 us (96.4%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (62.7%)
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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8327.482291945977 (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 : 1.74 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.23 us (96.2%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (58.3%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8544.96331883564 (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 : 1.68 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.07 us (96.2%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (62.2%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8488.381596326108 (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.05 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 291.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 149.88 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.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 = (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 | 7.286e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8179.46709538085 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8291.211227270784 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.99 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8217.010626577296 (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 : 1.90 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.539e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7816.974990007374 (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 : 1.67 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.12 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.0%)
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 | 6.808e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8623.709959538732 (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 : 1.93 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8327.583980993566 (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.15 us (1.4%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 146.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 6.889e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8457.264585015124 (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 : 1.90 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.94 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.2%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8030.901439039438 (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 : 1.76 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8123.840601680979 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.3%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8060.999807691752 (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 : 1.86 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.340e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7818.227682143405 (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.21 us (1.4%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 146.35 us (95.5%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.6%)
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 | 7.461e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7662.663516625886 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.44 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8016.7675036042965 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.8%)
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 | 7.255e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7819.591075618134 (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 : 1.98 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.06 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7905.159088299844 (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 : 1.81 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.22 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (62.0%)
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 | 6.843e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8227.610527031326 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8150.4254159673965 (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 : 1.92 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.069e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7903.526893968424 (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.26 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.8%)
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 | 6.987e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7965.442683685222 (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 : 1.83 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.63 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (65.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 | 7.316e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7577.67933474486 (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 : 1.69 us (1.0%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.72 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7789.054045792971 (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 : 1.70 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.74 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7801.527980977926 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.97 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7855.17311710667 (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 : 1.74 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.91 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (67.7%)
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 | 7.262e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7517.853159351536 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.9%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7610.931128873199 (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.06 us (1.3%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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.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 | 7.272e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7450.141653267718 (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 : 1.92 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 6.845e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7884.657698061442 (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 : 1.91 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7676.639870453566 (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.25 us (1.5%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.67 us (95.7%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.9%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7591.438058007031 (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 : 1.96 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.81 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.116e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7498.312219538165 (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 : 1.97 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7332.009403677577 (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 : 1.90 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 165.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (68.1%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7312.031081089215 (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 : 1.88 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7267.897899310664 (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 : 1.65 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.93 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.1%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7450.404201588999 (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 : 1.89 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.1%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7274.641854968131 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.70 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 7.177e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7266.516077048052 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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.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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7331.538334463153 (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.15 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 160.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7300.301126007488 (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 : 1.92 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 491.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.66 us (95.7%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.7%)
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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7420.637945358079 (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.08 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.22 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (61.1%)
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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7506.509214491498 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7256.629642060899 (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 : 1.86 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 175.53 us (96.5%)
LB move op cnt : 0
LB apply : 1.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (71.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,-1.3877787807814457e-17,0)
sum e = 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 | 7.384e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6906.280089711174 (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 : 1.85 us (1.2%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.88 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.5%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7067.442339952228 (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.53 us (1.7%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 143.94 us (95.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.9%)
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 | 7.354e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6883.422405042045 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.32 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7116.497148788173 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 149.82 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.3%)
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 | 7.288e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6894.667510213618 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (54.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.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 | 7.258e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6897.5631696603605 (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 : 1.96 us (1.3%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 145.49 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 = (-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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7205.243824492495 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.99 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.1%)
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 | 6.892e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7212.020244853668 (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 : 1.97 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (58.5%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7108.632927588133 (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 : 1.70 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.44 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7025.54073705234 (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.00 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 170.56 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6849.645802353478 (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 : 1.86 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.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 | 6.971e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7028.351751584362 (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 : 1.72 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 141.88 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.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 = (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 | 7.344e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6647.992340458806 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.82 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (-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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6832.363204736518 (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 : 1.89 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (55.6%)
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 | 7.257e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6680.63915574405 (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.04 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.99 us (95.7%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6906.625045266868 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 144.15 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (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 | 7.030e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6848.182835122837 (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.01 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.200e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6663.0264476989 (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.14 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.26 us (95.6%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 = (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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6910.302510283485 (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 : 1.97 us (1.3%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.35 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6659.942067581494 (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 : 1.87 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.20 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.8%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6786.471267831883 (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 : 1.62 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.18 us (96.3%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (65.1%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6560.1961414316265 (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 : 1.74 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.5%)
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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6490.364625758697 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.52 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6679.5338521304375 (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 : 1.68 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.90 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.8%)
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 | 7.436e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6301.496313480692 (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 : 1.91 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.74 us (96.2%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6505.545532045396 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6514.977459528853 (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 : 1.83 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.49 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.8%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6647.165939216268 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.27 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.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 = (-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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6546.479713427052 (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.16 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.21 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 6.873e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6708.6887652013775 (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.13 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6459.904916106898 (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 : 1.71 us (1.0%)
patch tree reduce : 501.00 ns (0.3%)
gen split merge : 551.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 310.00 ns (0.2%)
LB compute : 160.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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.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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6327.298945330933 (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 : 1.73 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.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,8.326672684688674e-17,0)
sum e = 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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6488.943141644754 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.91 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.9%)
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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6257.645231746839 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.42 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (60.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,0,0)
sum e = 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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6418.688511843451 (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 : 1.81 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.260e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6234.778623075727 (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.01 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.093e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6362.89394432697 (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 : 1.76 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.32 us (95.6%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (51.9%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6424.884623272673 (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 : 1.76 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.9%)
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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6267.933465048816 (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.10 us (1.4%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 148.64 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6225.02530243744 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.7%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6273.789748912648 (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 : 1.99 us (1.0%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 281.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.1%)
LB compute : 196.14 us (96.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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,-2.7755575615628914e-17,0)
sum e = 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 | 7.566e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5879.442372016367 (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.06 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.85 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.1%)
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 | 6.884e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6444.000220384728 (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 : 1.87 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.2%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6215.597154931406 (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 : 1.96 us (1.3%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 751.00 ns (0.5%)
LB compute : 145.60 us (94.9%)
LB move op cnt : 0
LB apply : 1.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (55.1%)
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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6366.2634830985835 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.250e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6068.54273847683 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (66.2%)
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 | 7.210e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6086.358014181136 (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 : 1.68 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.88 us (96.2%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (57.9%)
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 | 7.396e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5917.144761438436 (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 : 1.81 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.15 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.4%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6204.239397740767 (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.28 us (1.5%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.57 us (95.7%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6199.927235470951 (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 : 1.95 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6204.638849167915 (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.21 us (1.5%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.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 = (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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6068.417614489178 (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 : 1.93 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 171.54 us (96.2%)
LB move op cnt : 0
LB apply : 1.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.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 | 7.199e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6002.852027835081 (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 : 1.70 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.17 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6138.297015297191 (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 : 1.58 us (0.9%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 168.69 us (96.6%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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,-8.326672684688674e-17,0)
sum e = 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 | 7.275e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5911.514396494243 (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 : 1.75 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.83 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (62.6%)
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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5932.385377522756 (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 : 1.77 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.32 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6065.362363271489 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (61.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 = (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 | 7.115e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6003.570664166103 (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.15 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.36 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.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 | 7.349e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5799.24823529025 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (61.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 = (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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5933.989129211857 (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 : 1.68 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 145.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 | 6.805e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6235.292490027631 (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 : 1.86 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6081.718226672512 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.46 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (58.8%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6013.598528190091 (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 : 1.93 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.86 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.5%)
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 | 7.097e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5941.702595390096 (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 : 1.90 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 169.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.6%)
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 | 7.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5819.1168597938895 (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 : 1.88 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.04 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.6%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5940.477949417976 (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 : 1.85 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.30 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.3%)
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 | 7.337e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5714.046543747907 (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 : 1.79 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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,0,0)
sum e = 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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5904.415479844285 (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.18 us (0.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 239.15 us (97.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.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 | 8.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5087.294475798998 (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 : 1.89 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.105e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5868.613518791357 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5756.206977780211 (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 : 1.86 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.64 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 = (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 | 7.084e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5865.992369774674 (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.11 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.37 us (96.1%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.328e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5661.515114917842 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 6.837e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6058.174654543173 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.114e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5813.295260956355 (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.04 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5906.467716590145 (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 : 1.69 us (1.0%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 159.55 us (96.4%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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 = (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 | 7.225e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5706.5940857907 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 147.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5848.80871295784 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5849.6096791829905 (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 : 1.74 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.31 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.305e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5621.197426789623 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5674.074142740979 (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.05 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.84 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.6%)
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 | 7.261e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5640.90936688759 (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 : 1.95 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 163.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5620.826183031814 (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.18 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.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 | 7.269e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5621.807445759209 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (60.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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5902.714439522332 (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 : 1.82 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5805.795850609481 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.76 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5739.582198949328 (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.08 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5702.82452256303 (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.04 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 164.89 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.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 = (-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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5656.501689526315 (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 : 1.76 us (1.0%)
patch tree reduce : 571.00 ns (0.3%)
gen split merge : 471.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.3%)
LB compute : 161.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (63.9%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5611.126334534173 (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 : 1.71 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.46 us (96.1%)
LB move op cnt : 0
LB apply : 921.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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 = (-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 | 6.961e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5832.359105531027 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.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,-5.551115123125783e-17,0)
sum e = 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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5635.430518043279 (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 : 1.74 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5716.781297768795 (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 : 1.98 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (60.5%)
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 | 7.384e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5486.689343028289 (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.65 us (1.7%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.2%)
LB compute : 152.76 us (95.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5582.559169388164 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 6.815e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5938.287210932861 (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 : 1.90 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.938e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5830.370120699546 (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 : 1.96 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.016e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5762.968865012694 (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.02 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 157.83 us (95.8%)
LB move op cnt : 0
LB apply : 1.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.2%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5743.492824128782 (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 : 1.84 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.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 = (-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 | 7.083e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5704.468504520425 (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 : 1.73 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5789.215748866549 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (59.5%)
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 | 7.167e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5635.3586892976155 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5711.981373579133 (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 : 1.89 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.08 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.2%)
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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5602.436796846544 (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 : 1.77 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.47 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.166e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5634.598882914084 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.219e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5593.709278486083 (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.00 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.70 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.413e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5447.323523943468 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.88 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5911.440611185111 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 143.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (58.3%)
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 | 6.886e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5866.098953636171 (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.16 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (65.0%)
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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5698.610489576537 (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 : 1.85 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.36 us (96.2%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.8%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5684.662399148433 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.38 us (88.0%)
LB move op cnt : 0
LB apply : 14.48 us (8.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (58.7%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5663.007158507101 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.04 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5626.234953334534 (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 : 1.89 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5748.38332864803 (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 : 1.86 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.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 | 7.333e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5521.87622999553 (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 : 1.74 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.45 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5648.924760812939 (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 : 1.91 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.36 us (91.6%)
LB move op cnt : 0
LB apply : 7.78 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 = (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 | 7.349e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5516.986903530921 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.82 us (95.8%)
LB move op cnt : 0
LB apply : 1.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5955.195138353442 (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.23 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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,-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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5846.906015259383 (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.06 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.6%)
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 | 6.783e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5991.968123617186 (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 : 1.68 us (0.9%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.1%)
LB compute : 178.87 us (96.7%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (68.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 = (-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 | 7.346e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5537.557292872974 (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 : 1.78 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 166.72 us (96.5%)
LB move op cnt : 0
LB apply : 1.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (68.0%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5723.126522453041 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.1%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5777.080188949188 (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 : 1.81 us (1.2%)
patch tree reduce : 550.00 ns (0.4%)
gen split merge : 521.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.45 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.1%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5603.315777072828 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.39 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.365e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5547.095089048042 (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 : 1.93 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5785.859872554744 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.99 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.25 us (68.3%)
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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5766.089412375455 (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.05 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.55 us (95.8%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (59.7%)
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 | 7.678e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5341.568777058748 (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.09 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.010e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5858.821238234852 (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 : 1.87 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.25 us (96.0%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.857e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5999.033728739908 (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.01 us (1.2%)
patch tree reduce : 520.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 162.16 us (95.7%)
LB move op cnt : 0
LB apply : 1.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.0%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5811.606987618471 (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.28 us (1.4%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.7%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5824.413839135219 (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 : 1.90 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 431.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 171.84 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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 = (-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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5677.4245208550765 (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 : 1.68 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 163.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.1%)
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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5836.073315279308 (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 : 1.87 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.93 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (62.9%)
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 | 7.246e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5725.2397225647865 (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 : 1.85 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.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 = (-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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5850.57509235266 (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.36 us (1.6%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 145.22 us (95.3%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5816.347069937551 (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 : 1.76 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 451.00 ns (0.3%)
LB compute : 143.25 us (95.3%)
LB move op cnt : 0
LB apply : 1.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.4%)
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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5835.887395308944 (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 : 1.84 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (60.6%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5882.29790703383 (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.04 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.59 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6018.220778225404 (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.11 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 147.30 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5983.970688586633 (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.05 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.00 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (62.3%)
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 | 6.929e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6074.800625114174 (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 : 1.89 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.34 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.1%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5895.442349105571 (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 : 1.88 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.52 us (96.3%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5939.167465180129 (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 : 1.71 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 6.989e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6067.0378594896 (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 : 1.69 us (1.1%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 142.23 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.5%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6057.88956455623 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6042.742169162961 (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 : 1.85 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.90 us (96.4%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.325e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5834.951914524425 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5949.211537159122 (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.09 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.1%)
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 | 6.917e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6214.471343838217 (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 : 1.92 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.150e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6029.259501005713 (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.02 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.903e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6264.324292672476 (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 : 1.88 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 7.036e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6164.982518747286 (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 : 1.93 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.43 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.0%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6215.70656410614 (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 : 1.93 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.72 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6078.844020266444 (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.07 us (1.3%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.48 us (95.8%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6132.065785850003 (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 : 1.66 us (1.0%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 167.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.2%)
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 | 9.506e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4622.718022512123 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (66.7%)
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 | 7.293e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6046.682644913923 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 149.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.0%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6199.850327180901 (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 : 1.71 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.95 us (96.3%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (55.0%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6193.217545868158 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.8%)
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 | 7.487e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5954.126279513675 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.037e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6358.264081226331 (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 : 1.79 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 158.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.1%)
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 | 7.354e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6107.919736042614 (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 : 1.80 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.9%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6445.494895244726 (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 : 1.95 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.77 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6609.680184341467 (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 : 1.85 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.08 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6617.350776423356 (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 : 1.95 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.1%)
LB compute : 181.13 us (96.5%)
LB move op cnt : 0
LB apply : 1.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (67.2%)
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 | 7.533e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6059.058917502924 (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.00 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.75 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6497.219205519767 (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 : 1.79 us (1.2%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 140.86 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.8%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6589.2885330981335 (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 : 1.77 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 142.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6623.809400863064 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.3%)
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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6589.498779711978 (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 : 1.76 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 164.40 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 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 = (-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 | 7.205e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6475.826662776606 (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.06 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.98 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6510.778476997049 (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 : 1.99 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 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.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 | 7.021e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6707.438646642544 (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 : 1.95 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (69.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 = (-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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6656.298244583388 (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.14 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.44 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6886.238506065313 (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 : 1.91 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 165.06 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.113e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6718.059550221624 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.68 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6728.384778474891 (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 : 1.84 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.87 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.2%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6826.9054421991 (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 : 1.86 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6867.645916654078 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.53 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (54.8%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6869.067581286581 (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 : 1.76 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 142.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7065.661911305944 (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 : 1.97 us (1.3%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.3%)
LB compute : 143.31 us (95.6%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (65.1%)
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 | 7.410e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6653.86238975924 (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 : 1.75 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.13 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6849.62612931325 (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.06 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 153.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.5%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7045.222642429939 (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 : 2.33 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.37 us (95.6%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (58.0%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7160.075893949467 (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.13 us (1.4%)
patch tree reduce : 571.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.81 us (95.6%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7292.968249655497 (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 : 1.80 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.04 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7168.329494500071 (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 : 1.74 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.168e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7118.73861370122 (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 : 1.83 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.59 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.198e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7132.146245797037 (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 : 1.80 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.28 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7335.576471494263 (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 : 1.85 us (1.2%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.92 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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 | 7.422e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7002.964073977185 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.13 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7320.404423670086 (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 : 1.78 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.48 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.308e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7202.785641969287 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.91 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.4%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7538.262624861895 (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.17 us (1.4%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.41 us (95.7%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.844e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7791.238024315473 (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.19 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.54 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7526.60298023855 (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 : 1.98 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 148.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.8%)
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 | 6.887e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7846.238805002213 (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 : 1.77 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7782.865854302811 (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 : 1.72 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.74 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (58.5%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7811.236363305296 (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 : 1.87 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.85 us (96.1%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.470e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7384.922031710238 (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 : 1.82 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 157.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7693.463729411922 (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.07 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.58 us (95.8%)
LB move op cnt : 0
LB apply : 1.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.464e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7497.45725931083 (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 : 1.93 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.73 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (-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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7949.02712949476 (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 : 1.77 us (1.1%)
patch tree reduce : 541.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.53 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.0%)
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 | 7.255e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7825.747672463427 (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 : 1.92 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.7%)
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 | 6.839e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8363.664486540814 (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.03 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.66 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 = (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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8129.967035282842 (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 : 1.96 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 151.45 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8372.04829438935 (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 : 1.69 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.63 us (96.5%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 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.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 | 7.309e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8005.762190010406 (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 : 1.92 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.35 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.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,5.551115123125783e-17,0)
sum e = 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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8285.338237541699 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.15 us (96.2%)
LB move op cnt : 0
LB apply : 952.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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-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 | 7.059e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8420.93853736375 (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 : 1.70 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.99 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.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 = (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 | 7.029e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8524.024201162396 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.82 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (-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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8445.112769357915 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 141.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (62.3%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8680.761323919261 (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 : 1.96 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.00 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8747.45210380057 (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 : 1.91 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.34 us (96.1%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,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 | 7.329e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8445.748879459008 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 6.949e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8983.446619365224 (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 : 1.99 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.6%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8948.591270366242 (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 : 1.87 us (1.0%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 13.07 us (7.3%)
LB compute : 159.44 us (89.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (62.2%)
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 | 7.256e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8750.49265587004 (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 : 1.95 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.97 us (96.2%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8915.59041689081 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (53.9%)
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 | 7.435e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8689.989474696986 (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 : 1.83 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.57 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 = (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 | 7.137e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9132.772078500679 (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 : 1.64 us (1.1%)
patch tree reduce : 430.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.35 us (95.7%)
LB move op cnt : 0
LB apply : 1.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.002e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9392.449788850232 (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 : 1.86 us (1.2%)
patch tree reduce : 510.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.06 us (95.9%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9289.080281314618 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.94 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (55.7%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9497.420266944706 (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 : 1.91 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.73 us (95.8%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.0%)
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 | 7.151e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9450.827982720391 (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 : 1.99 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (91.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 = (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 | 7.075e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9640.80969623802 (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 : 1.98 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (72.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.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 | 6.958e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9895.044914728212 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.36 us (96.1%)
LB move op cnt : 0
LB apply : 1.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (61.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 = (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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10016.15297966009 (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.08 us (1.2%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 421.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 681.00 ns (0.4%)
LB compute : 160.95 us (95.3%)
LB move op cnt : 0
LB apply : 1.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (57.6%)
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 | 7.191e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9757.711224508736 (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 : 1.81 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 340.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 331.00 ns (0.2%)
LB compute : 158.68 us (96.2%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (62.2%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10189.087595007948 (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 : 1.89 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.9%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10130.165093316507 (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 : 1.77 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10247.264077458782 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.66 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10143.121693213236 (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.04 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 = (-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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10111.36472397549 (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 : 1.79 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.50 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (61.3%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10217.661795460193 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10645.430444287575 (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.44 us (1.6%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.03 us (95.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.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 | 6.943e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10937.657655373225 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (59.0%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10770.25328817161 (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.07 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11208.729284630308 (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 : 1.80 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 168.34 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11079.795751625015 (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 : 1.98 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11343.65875626493 (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 : 1.91 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.394e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10817.989219259804 (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 : 1.90 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.8%)
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 | 7.106e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11376.623458838612 (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 : 1.74 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.10 us (96.2%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (56.4%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11473.941128943135 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.89 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11653.22668124607 (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 : 1.82 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 145.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.9%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11529.385107011425 (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 : 1.93 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (63.9%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11855.725193825003 (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 : 1.91 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 6.885e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12393.842230302054 (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 : 1.95 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (58.6%)
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 | 6.893e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12516.375839773937 (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 : 1.80 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 161.60 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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.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 | 7.180e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12148.594028337026 (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 : 1.95 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 167.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.7%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12516.046977747703 (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 : 1.79 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 140.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12503.58515533404 (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 : 1.70 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.78 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.1%)
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 | 7.069e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12758.706249521654 (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 : 1.67 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.61 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.230e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12615.80153449224 (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 : 1.70 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.38 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13048.618801232078 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.95 us (96.2%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (62.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 | 7.280e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12816.799823399797 (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.08 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.57 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.0%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13453.478008225511 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (58.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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13615.172803679623 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.75 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 7.160e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13483.81422824482 (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 : 1.92 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 166.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.132e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13694.256566100174 (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 : 1.85 us (1.0%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.62 us (96.2%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.273e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13584.048948169197 (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 : 1.64 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 163.25 us (96.5%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14036.230743440754 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.50 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.4%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14482.224725805914 (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 : 1.95 us (1.2%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 154.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.3%)
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 | 7.211e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14181.803983063026 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.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 = (-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 | 7.304e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14163.440483849796 (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.02 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.35 us (95.8%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.059e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14824.839847705232 (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.08 us (0.7%)
patch tree reduce : 351.00 ns (0.1%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 309.28 us (98.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 8.806e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12021.995881968238 (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.10 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.41 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (64.3%)
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 | 7.431e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14411.17525663912 (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.05 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 151.04 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.7%)
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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15022.621674872198 (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 : 1.92 us (1.2%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 7.285e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15042.11412321604 (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 : 1.95 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 151.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.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 = (-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 | 7.152e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15499.636611019834 (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 : 1.78 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.46 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.794e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16503.438370512158 (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.07 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 530.00 ns (0.3%)
LB compute : 152.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.855e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16543.899715673546 (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 : 1.67 us (1.0%)
patch tree reduce : 611.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.2%)
LB compute : 164.25 us (96.1%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16166.947218462832 (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 : 1.87 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 157.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16107.956104600089 (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 : 1.80 us (1.2%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 us (64.5%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16361.880779770338 (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 : 1.76 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 141.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.9%)
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 | 7.218e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16438.032792843256 (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 : 1.93 us (1.3%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.3%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16983.06219790448 (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.11 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 147.33 us (95.4%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 7.242e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16749.191011455037 (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 : 1.86 us (1.2%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 144.91 us (95.8%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17502.24602322472 (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 : 1.98 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (54.5%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17509.524277140867 (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 : 1.87 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 | 7.023e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17844.70006466439 (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 : 1.98 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 146.95 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.852e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18485.210735657318 (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 : 1.90 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (64.6%)
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 | 7.128e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17958.627408883138 (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.06 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.044e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18362.861692431918 (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 : 1.64 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.67 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18444.185111413066 (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.23 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.27 us (95.8%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.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 | 7.212e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18305.591131002693 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.227e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18452.617565265133 (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 : 1.75 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.71 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.1%)
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 | 7.074e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19037.289192400487 (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 : 1.75 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 | 7.058e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19269.068299614162 (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 : 1.80 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.34 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.124e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19274.132484313715 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.261e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19088.777763120535 (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.25 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 145.28 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19901.78017329507 (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.12 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.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 | 6.859e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20579.377379440746 (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 : 1.77 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.40 us (96.2%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20341.869685052556 (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 : 1.67 us (0.7%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 217.94 us (97.1%)
LB move op cnt : 0
LB apply : 1.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 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.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 | 7.658e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18756.623000148847 (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 : 1.74 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 163.46 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (64.7%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20233.057181479286 (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 : 1.76 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20245.481749421382 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 7.138e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20628.042013544968 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20713.85858837779 (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.10 us (1.3%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.42 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20797.29651964489 (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 : 1.82 us (1.1%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.33 us (96.2%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.1%)
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 | 7.290e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20664.02729951403 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (56.3%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21278.426421287677 (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 : 1.92 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 144.65 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21781.173355597293 (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 : 1.98 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.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 = (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 | 6.916e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22240.139274925656 (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 : 1.91 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 161.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (66.3%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21614.284196793487 (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 : 1.75 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (58.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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21979.035012949458 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.96 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.070e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22172.10435618797 (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 : 1.73 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22244.36776856325 (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 : 1.93 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.17 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (59.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.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 | 7.397e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21437.65635276837 (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 : 1.89 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.77 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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 | 7.457e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21382.071373509454 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.47 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.6%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22622.721472850404 (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.34 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 167.48 us (96.1%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 7.410e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21738.691337326625 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 144.67 us (96.0%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23059.68970481033 (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 : 1.98 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.18 us (95.6%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.0%)
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 | 6.955e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23381.587509321802 (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.09 us (1.4%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23381.040496171907 (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 : 1.67 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 441.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 172.64 us (96.4%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.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,-5.551115123125783e-17,0)
sum e = 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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23174.2161023783 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.4%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23206.055331313084 (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 : 1.79 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 154.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (65.9%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23139.787795167467 (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 : 1.87 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.90 us (95.9%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23291.253243589574 (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 : 1.95 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 661.00 ns (0.4%)
LB compute : 145.85 us (95.3%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (69.9%)
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 | 7.271e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22910.15853783525 (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 : 1.76 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 420.00 ns (0.3%)
LB compute : 143.95 us (95.3%)
LB move op cnt : 0
LB apply : 1.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 7.020e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23810.54733754867 (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.04 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.18 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.7%)
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 | 7.589e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22099.924558881135 (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.31 us (1.3%)
patch tree reduce : 401.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 166.78 us (96.0%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.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 | 7.353e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22883.9648103465 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.17 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24198.250425125476 (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 : 1.93 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.0%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24653.52850575856 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.28 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23625.706515993636 (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.01 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 167.24 us (96.3%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.1%)
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 | 7.229e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23551.49658102819 (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 : 1.76 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.6%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24435.505873546976 (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 : 1.88 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.0%)
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 | 7.065e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24230.163880504682 (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 : 1.71 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.4%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23888.19800985924 (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 : 1.79 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 152.91 us (96.2%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23687.56583614091 (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.09 us (1.3%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24501.253596535786 (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 : 1.93 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.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 | 7.310e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23666.005065177935 (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 : 1.83 us (1.2%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 6.801e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25504.130751790828 (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 : 1.94 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.69 us (96.0%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.6%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24082.36925430264 (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 : 1.85 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 148.14 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.935e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25146.99281822199 (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.06 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24519.565452363182 (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 : 1.76 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 160.99 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.3%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24872.189449755573 (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.21 us (1.4%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.2%)
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 | 7.079e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24847.580762892172 (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 : 1.78 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 6.930e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25457.60506228899 (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 : 1.89 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.10 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (57.3%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24677.79897372421 (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 : 1.90 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.70 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (59.2%)
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 | 6.997e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25371.856983423273 (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 : 1.80 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.64 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.3%)
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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24625.37704669582 (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 : 1.90 us (1.3%)
patch tree reduce : 411.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.86 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.245e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24675.495811593177 (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 : 1.78 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.69 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25063.833960106655 (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 : 1.96 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.93 us (96.2%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24797.747399965632 (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.34 us (1.5%)
patch tree reduce : 400.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.41 us (95.7%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.972e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25935.193797286556 (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.12 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25964.76220776283 (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 : 1.72 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.98 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25340.785213484472 (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.44 us (1.6%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.52 us (95.7%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.5%)
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 | 7.101e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25797.02346691716 (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 : 1.66 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.23 us (96.4%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (60.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.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 | 7.301e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25207.917755154882 (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 : 1.75 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26181.702096050092 (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.01 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 154.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (64.5%)
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 | 7.178e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25891.27185058729 (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 : 1.72 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26005.61786903307 (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.05 us (1.3%)
patch tree reduce : 420.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.80 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (55.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 = (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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26491.913512626048 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.53 us (95.9%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 7.086e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26621.029673196765 (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 : 1.95 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,-1.3877787807814457e-17,0)
sum e = 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 | 6.865e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27617.839941299208 (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.14 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.46 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.3%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27909.80619385462 (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.05 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 165.96 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.228e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26476.61113678895 (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 : 1.79 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.64 us (96.1%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.7%)
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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26395.5162633071 (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 : 1.83 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.3%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27354.394393850827 (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 : 1.63 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.71 us (96.3%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.045e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27488.023129291636 (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 : 1.99 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.67 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.3%)
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 | 7.260e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26751.179333769658 (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 : 1.83 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 148.93 us (95.8%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (62.3%)
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 | 7.043e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27637.140004250432 (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.22 us (1.3%)
patch tree reduce : 701.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.92 us (95.7%)
LB move op cnt : 0
LB apply : 1.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.1%)
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 | 7.144e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27289.45152153349 (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 : 1.82 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.27 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 961.00 ns (61.5%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27608.360355222714 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.29 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.905e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28255.302650619156 (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.17 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.62 us (95.5%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (73.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 | 7.110e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27419.70388596531 (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.03 us (1.2%)
patch tree reduce : 480.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 169.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (69.0%)
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 | 7.342e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26505.273857402673 (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.87 us (1.7%)
patch tree reduce : 671.00 ns (0.4%)
gen split merge : 851.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1.10 us (0.6%)
LB compute : 162.90 us (94.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 = (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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27326.75796038688 (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 : 1.72 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.3%)
LB compute : 141.82 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (61.2%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27830.87995620263 (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 : 1.92 us (1.3%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.47 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (58.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 = (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 | 7.162e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26914.405036089927 (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 : 1.64 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27330.976952338948 (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 : 1.71 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 144.50 us (96.0%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.981e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27355.957152367555 (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 : 1.81 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.51 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 8.427e-04 | 0.3% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22543.816678886596 (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 : 1.77 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.30 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.909e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27341.96098393282 (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 : 1.79 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.52 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (66.7%)
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 | 7.193e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26110.387419408344 (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.00 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 156.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26375.100792537803 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.29 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.1%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26641.598373697892 (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 : 1.92 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (61.1%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26419.037316476537 (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 : 1.68 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.30 us (96.5%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25346.612928176037 (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 : 1.65 us (1.1%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (60.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 | 6.977e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26136.702203565426 (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.03 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.75 us (95.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.0%)
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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25233.56643063176 (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 : 1.90 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.71 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25566.94646481424 (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 : 1.76 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.21 us (96.0%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24733.712004944646 (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 : 1.81 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.06 us (96.1%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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 = (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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24741.726601441176 (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 : 1.76 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.10 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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 = (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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25663.570206546094 (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 : 1.83 us (1.3%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 140.65 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.767e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26126.303947965647 (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.08 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 156.94 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.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 | 7.290e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24144.167477956755 (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 : 1.96 us (1.2%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (61.3%)
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 | 7.003e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25025.032209741716 (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 : 1.68 us (0.9%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.27 us (96.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 7.362e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23706.812000837912 (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 : 1.80 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.11 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (64.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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24524.46269851391 (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 : 1.68 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 141.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.0%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24862.575636991238 (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 : 1.78 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.96 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.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 = (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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23426.053427306088 (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 : 1.63 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 7.334e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23451.052685158393 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24354.26461595898 (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 : 1.97 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.4%)
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 | 7.054e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24227.04720927022 (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 : 1.78 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (55.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 | 6.982e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24400.824329973853 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.9%)
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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24368.37968998842 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.73 us (96.0%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 | 7.072e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23947.45010939752 (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 : 1.96 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.74 us (96.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (68.8%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23830.89228484652 (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 : 1.97 us (1.2%)
patch tree reduce : 520.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.53 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (64.9%)
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 | 7.240e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23260.77368785134 (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 : 1.87 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.27 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.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 | 7.282e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23062.642947647528 (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 : 1.84 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.03 us (96.2%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23300.690220736054 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.22 us (95.5%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 7.217e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23143.47710145755 (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 : 1.84 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 311.00 ns (0.2%)
LB compute : 148.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.3%)
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 | 7.192e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23160.31205341655 (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 : 1.89 us (1.2%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.47 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (56.7%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23588.289992259794 (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 : 1.95 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.24 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 7.055e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23478.83089468057 (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.64 us (1.5%)
patch tree reduce : 390.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 172.38 us (96.0%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.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 | 7.150e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23100.391980192937 (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.07 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.73 us (95.6%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23580.045750271438 (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.47 us (1.6%)
patch tree reduce : 721.00 ns (0.5%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 511.00 ns (0.3%)
LB compute : 145.73 us (94.7%)
LB move op cnt : 0
LB apply : 1.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (7.0%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23071.62476722617 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 141.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.3%)
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 | 7.114e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23011.14421860425 (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 : 1.70 us (1.1%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.67 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23420.617513454785 (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.16 us (1.2%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (60.2%)
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 | 7.465e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21788.487464538626 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.72 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22562.081095862155 (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 : 1.88 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22864.661750691128 (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 : 1.94 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.9%)
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 | 6.869e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23427.121925155643 (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.01 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 145.51 us (96.0%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22380.622530359542 (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 : 1.73 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.69 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (63.1%)
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 | 7.170e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22269.467022823555 (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 : 1.81 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.41 us (96.2%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 = (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 | 7.076e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22470.617493256093 (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 : 1.90 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (61.1%)
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 | 6.987e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22659.59413227279 (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 : 1.97 us (1.3%)
patch tree reduce : 401.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (57.0%)
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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22014.47796708482 (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 : 1.69 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 142.87 us (96.2%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22517.11171622742 (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.17 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21682.85464707612 (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.12 us (1.4%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.22 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (55.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 | 7.120e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21813.006586052717 (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.03 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.39 us (96.0%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21586.514221857262 (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 : 1.76 us (0.7%)
patch tree reduce : 340.00 ns (0.1%)
gen split merge : 311.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.1%)
LB compute : 247.57 us (97.6%)
LB move op cnt : 0
LB apply : 1.03 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.9%)
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 | 8.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19137.678194926906 (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.14 us (1.4%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.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 | 7.012e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21783.984679725334 (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 : 1.94 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21308.01772049108 (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.13 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.42 us (95.7%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (57.6%)
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 | 6.857e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22006.62810294458 (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 : 1.98 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 158.59 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (-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 | 7.038e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21304.243933397953 (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 : 1.95 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21125.01286531434 (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 : 1.87 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.37 us (96.2%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 = (-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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20587.924247121126 (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 : 1.92 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.9%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20681.91017582958 (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 : 1.78 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.49 us (96.1%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.9%)
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 | 7.331e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19890.43020729753 (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 : 1.70 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.71 us (96.0%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 7.216e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20054.10221573195 (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.00 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 165.47 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (63.0%)
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 | 7.490e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19170.808055977242 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 154.55 us (96.1%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19928.020159417683 (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.02 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.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 = (-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 | 6.860e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20594.91493386312 (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 : 1.94 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 145.67 us (96.0%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 = (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 | 6.832e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20507.510442138166 (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 : 1.76 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.17 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.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 | 7.266e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19117.646970408685 (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 : 1.89 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19191.13077595956 (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 : 1.80 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.95 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.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 | 7.066e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19312.36410153386 (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 : 1.94 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 165.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 = (-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 | 7.243e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18665.651942083 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (58.0%)
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 | 7.223e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18543.20328754435 (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 : 1.76 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.45 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.157e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18537.320913860156 (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 : 1.85 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.80 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17943.408759144135 (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 : 1.85 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.74 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.7%)
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 | 7.080e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18374.903704007913 (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 : 1.84 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.87 us (95.8%)
LB move op cnt : 0
LB apply : 1.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 6.954e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18521.537977378845 (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.19 us (1.5%)
patch tree reduce : 410.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.48 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 6.942e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18364.8683327572 (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.15 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 6.986e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18062.18589898131 (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 : 1.85 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.78 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (63.0%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17474.362780068772 (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 : 1.83 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 161.04 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 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.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 | 7.159e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17258.450985202857 (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 : 1.67 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 155.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 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.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 | 7.389e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16542.76064361168 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.88 us (95.6%)
LB move op cnt : 0
LB apply : 1.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17304.794598314937 (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 : 1.69 us (1.0%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 571.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.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 | 7.130e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16777.408836113416 (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 : 1.91 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.12 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.022e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16847.966756723014 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 7.135e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16400.702766977203 (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 : 1.92 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.52 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (61.1%)
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 | 6.813e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16983.927643112085 (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.35 us (1.5%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.66 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 6.946e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16473.68064944188 (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.04 us (1.4%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.25 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 6.896e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16408.2501364636 (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 : 1.97 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 361.00 ns (0.2%)
LB compute : 162.62 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 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.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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15584.06745254171 (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 : 1.98 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 159.33 us (96.1%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.0%)
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 | 6.988e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15829.905696602069 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.50 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.1%)
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 | 7.147e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15301.413575990582 (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 : 1.81 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 143.48 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 7.015e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15413.111621218113 (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 : 1.72 us (1.1%)
patch tree reduce : 441.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.2%)
LB compute : 156.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.23 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.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 = (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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14904.374150553629 (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 : 1.82 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.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 = (-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 | 6.945e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15215.473521729546 (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 : 1.90 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.01 us (96.1%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14790.30062899123 (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 : 1.92 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.90 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (61.8%)
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 | 6.831e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15118.270475642621 (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.06 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14343.414937596272 (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.09 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 172.19 us (96.3%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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 = (-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 | 7.386e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13663.924508263108 (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 : 1.80 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 164.30 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.139e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13975.498129610267 (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 : 1.80 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.21 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.019e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14051.73782228052 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.17 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (58.6%)
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 | 7.216e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13513.50367401314 (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.07 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.92 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.275e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13251.144568670736 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 360.00 ns (0.2%)
LB compute : 145.68 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (59.3%)
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 | 7.090e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13442.226656208457 (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.00 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.19 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (62.2%)
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 | 7.117e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13240.382127594563 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.27 us (96.0%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13244.405369254375 (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.03 us (1.3%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.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 | 7.018e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13127.47617313457 (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.03 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.97 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.939e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13127.112960645101 (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.07 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.59 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.096e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12693.418446699181 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 154.94 us (96.2%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 7.014e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12699.582355899482 (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 : 1.72 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.92 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.1%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12288.109122469223 (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 : 1.82 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 148.12 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 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.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 | 7.138e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12205.413483057073 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 8.232e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10468.07814137225 (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.11 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 152.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (64.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 = (-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 | 7.145e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11930.002046512482 (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 : 1.90 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 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.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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11775.760197547248 (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 : 1.83 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.30 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (63.0%)
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 | 7.111e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11729.730955092682 (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 : 1.75 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.5%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11557.863136499976 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.60 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.6%)
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 | 7.236e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11282.599338737917 (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 : 1.94 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.45 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (59.5%)
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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11774.536609990906 (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.05 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.93 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.2%)
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 | 6.861e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11650.16042689837 (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.47 us (1.6%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.07 us (95.5%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (58.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 | 7.004e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11293.542353145458 (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 : 1.78 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 162.91 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (60.9%)
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 | 7.190e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10888.539273289909 (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 : 1.78 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 168.03 us (96.4%)
LB move op cnt : 0
LB apply : 1.29 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.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 = (-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 | 7.173e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10801.860351046245 (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 : 1.92 us (1.2%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.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 = (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 | 7.317e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10481.198140576726 (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 : 1.74 us (1.1%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.96 us (95.6%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.099e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10694.705575054431 (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.01 us (1.3%)
patch tree reduce : 451.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.12 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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,-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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10393.686767205943 (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 : 1.92 us (1.2%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 152.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.272e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10233.377156922961 (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 : 1.69 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.14 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (59.6%)
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 | 7.001e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10524.403586082657 (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 : 1.97 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.1%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10295.839350468772 (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.04 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.67 us (95.8%)
LB move op cnt : 0
LB apply : 1.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (70.4%)
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 | 7.110e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10161.38435104035 (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 : 1.94 us (1.3%)
patch tree reduce : 531.00 ns (0.4%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.42 us (95.4%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10501.999105810604 (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.23 us (1.5%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 620.00 ns (0.4%)
LB compute : 146.45 us (95.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (51.8%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10064.897409972597 (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 : 1.83 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 168.87 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (64.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 = (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 | 7.211e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9735.57237230053 (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 : 1.75 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.7%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9618.651254462286 (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 : 1.83 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.08 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (64.1%)
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 | 6.966e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9890.99713342017 (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 : 1.85 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.197e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9485.508487553581 (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 : 1.84 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.182e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9419.108042170636 (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 : 1.76 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.03 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.0%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9333.40657231434 (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.15 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 7.094e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9365.533963802935 (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.46 us (1.6%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.82 us (95.6%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (60.6%)
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 | 7.101e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9273.190390291404 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.7%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9219.725714907327 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.00 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9364.230723005976 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.46 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.849e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9367.018892238035 (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 : 1.91 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.55 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 6.943e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9161.71274669505 (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.08 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.40 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (60.6%)
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 | 7.281e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8663.277713709147 (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 : 1.84 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.0%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8889.267819157369 (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 : 1.68 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 139.16 us (96.1%)
LB move op cnt : 0
LB apply : 932.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 7.024e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8832.136627362144 (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 : 1.99 us (1.3%)
patch tree reduce : 391.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8656.270081260574 (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 : 1.77 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (64.9%)
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 | 7.400e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8248.352290143399 (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 : 1.88 us (1.1%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 170.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 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.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 | 7.310e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8284.188439794172 (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 : 1.99 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.73 us (96.0%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 6.949e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8644.954262202684 (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.09 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.99 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.4%)
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 | 6.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8704.290052340448 (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.00 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 = (-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 | 6.918e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8550.207010546286 (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 : 1.84 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.80 us (96.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.3%)
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 | 7.164e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8193.86937483813 (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 : 1.71 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.44 us (96.1%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.9%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8108.400833698341 (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 : 1.80 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.6%)
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 | 7.031e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8225.204211441198 (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 : 1.87 us (1.2%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.308e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7854.689634677333 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (61.0%)
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 | 7.278e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7830.263752032907 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8035.582331051013 (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 : 1.72 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.84 us (94.4%)
LB move op cnt : 0
LB apply : 2.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 7.190e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7813.911844317236 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 822.00 ns (57.8%)
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 | 7.345e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7595.322692698073 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (60.8%)
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 | 6.948e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7973.78748176074 (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.15 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.55 us (95.7%)
LB move op cnt : 0
LB apply : 1.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.4%)
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 | 6.938e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7930.436647807919 (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 : 1.88 us (1.2%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.83 us (95.8%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7873.557814338348 (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 : 1.71 us (0.9%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.1%)
LB compute : 185.21 us (96.7%)
LB move op cnt : 0
LB apply : 1.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.358e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7378.111881666416 (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.06 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.76 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 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.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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7637.009563758155 (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 : 1.90 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 155.07 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (64.3%)
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 | 7.271e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7369.402079816069 (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 : 1.79 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.81 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7269.38310107425 (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 : 1.90 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.63 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (58.8%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7470.484206817567 (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.32 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.22 us (95.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7483.5443909007 (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.26 us (1.5%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.31 us (95.7%)
LB move op cnt : 0
LB apply : 942.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (60.0%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7330.065095136337 (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 : 1.78 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.06 us (96.2%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 7.317e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7099.167336911998 (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 : 1.89 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.64 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (58.8%)
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 | 6.880e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7505.165541336573 (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 : 1.90 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.38 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (59.2%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7371.564870263487 (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 : 15.21 us (8.9%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 152.35 us (88.6%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7118.345219388976 (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.00 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.2%)
LB compute : 159.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (63.7%)
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 | 7.118e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7128.897845300484 (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 : 1.72 us (1.1%)
patch tree reduce : 551.00 ns (0.4%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.0%)
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 | 7.098e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7108.482923398395 (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 : 1.90 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (63.2%)
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 | 7.388e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6791.077737332199 (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 : 1.87 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.37 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (64.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 | 7.079e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7049.044394061619 (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 : 1.88 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.80 us (95.9%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (61.3%)
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 | 7.249e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6846.915702125291 (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 : 1.96 us (1.3%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 421.00 ns (0.3%)
LB compute : 145.83 us (95.7%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.006e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7046.5238570531255 (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.07 us (1.3%)
patch tree reduce : 491.00 ns (0.3%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.31 us (95.5%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (50.7%)
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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6781.9187523243145 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 351.00 ns (0.2%)
LB compute : 144.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.2%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6927.3741314178305 (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.01 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.40 us (95.8%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.0%)
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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6933.18831979216 (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 : 1.93 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 162.02 us (96.1%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (62.7%)
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 | 7.104e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6808.62616203834 (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 : 1.76 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.82 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6807.2298221551055 (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 : 1.75 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.68 us (96.4%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.026e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6817.687584882997 (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.00 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (60.8%)
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 | 7.004e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6806.614724286196 (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 : 1.84 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.06 us (96.0%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.7%)
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 | 7.039e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6741.628084460258 (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 : 1.88 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.23 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (62.8%)
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 | 7.136e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6619.261353341316 (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 : 1.93 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 151.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (59.7%)
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 | 7.412e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6344.22354192038 (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 : 1.83 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 164.09 us (96.3%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.7%)
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 | 7.403e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6323.475266523069 (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 : 1.90 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.39 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 7.308e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6378.013571491825 (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.03 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.43 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.126e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6513.211324199645 (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.06 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.41 us (95.8%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.110e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6500.400613634266 (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.25 us (1.4%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.33 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (54.3%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6518.042310628712 (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.11 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 148.76 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6554.228733887067 (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 : 1.79 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 171.27 us (96.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (64.3%)
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 | 7.174e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6364.157945533913 (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 : 1.93 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.79 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (62.3%)
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 | 7.089e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6414.947291686904 (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 : 1.99 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.41 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6506.893418748459 (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 : 1.69 us (1.0%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.28 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (61.3%)
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 | 7.386e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6110.617192104526 (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 : 1.74 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.11 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 812.00 ns (57.5%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6345.597329990272 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6248.578056446466 (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 : 1.96 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (50.0%)
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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6233.577571664811 (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 : 1.86 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 290.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 149.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.9%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6452.6740671497255 (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.04 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 6.995e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6339.32786073754 (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.02 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.90 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.237e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6107.17305602649 (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 : 1.80 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 178.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 us (65.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 | 7.324e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6015.14618818113 (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 : 1.77 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 160.02 us (96.3%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (66.8%)
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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6042.357497392297 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (61.7%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6198.928365581548 (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 : 1.99 us (1.3%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 541.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.74 us (95.6%)
LB move op cnt : 0
LB apply : 1.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 7.132e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6119.6823062310195 (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 : 1.89 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.189e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6053.050949283814 (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 : 1.82 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.11 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6076.032914208842 (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 : 1.74 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 250.00 ns (0.2%)
LB compute : 148.15 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 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.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 | 7.338e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5896.590660612205 (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.20 us (1.5%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.51 us (95.6%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (61.3%)
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 | 7.158e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6028.228456212562 (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.04 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 146.11 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (58.9%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5977.856483364152 (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 : 1.82 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.50 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (60.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 | 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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6068.7975819853245 (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 : 1.97 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 155.90 us (95.6%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5869.583935669367 (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.23 us (1.4%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 151.18 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 6.953e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6142.4697369930645 (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 : 1.78 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 440.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 180.11 us (96.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.16 us (65.2%)
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 | 7.233e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5890.596032891386 (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 : 1.71 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.71 us (87.5%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.053e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6026.845236280052 (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 : 1.70 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.55 us (96.2%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.1%)
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 | 7.109e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5965.3507955129535 (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.09 us (1.4%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.49 us (95.6%)
LB move op cnt : 0
LB apply : 1.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 7.048e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6003.84091173988 (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.30 us (1.1%)
patch tree reduce : 751.00 ns (0.3%)
gen split merge : 320.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 641.00 ns (0.3%)
LB compute : 209.36 us (96.4%)
LB move op cnt : 0
LB apply : 1.07 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (71.7%)
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 | 7.848e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5379.97297936573 (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 : 1.94 us (1.2%)
patch tree reduce : 481.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 481.00 ns (0.3%)
LB compute : 148.38 us (95.3%)
LB move op cnt : 0
LB apply : 1.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5950.933482317747 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.47 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.21 us (65.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 | 7.562e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5560.844844780045 (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 : 1.93 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 150.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (53.3%)
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 | 7.047e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5955.409728228195 (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 : 1.81 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.09 us (96.2%)
LB move op cnt : 0
LB apply : 951.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.7%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6061.683244113447 (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 : 1.86 us (1.2%)
patch tree reduce : 320.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 150.90 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (61.7%)
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 | 6.864e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6091.598707470391 (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.01 us (1.3%)
patch tree reduce : 330.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 150.40 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.9%)
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 | 7.051e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5919.787835586117 (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 : 1.70 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.63 us (96.4%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (61.6%)
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 | 6.976e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5973.216818579782 (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 : 1.74 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.68 us (96.2%)
LB move op cnt : 0
LB apply : 922.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.4%)
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 | 6.958e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5978.646532847694 (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 : 1.61 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.74 us (96.4%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (66.4%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5784.346338518549 (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.00 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 159.81 us (96.1%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.5%)
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 | 7.244e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5725.391810282057 (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 : 1.62 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.19 us (96.4%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 | 7.456e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5554.2914191721975 (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 : 1.97 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 149.45 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5799.545582295045 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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,-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 | 7.395e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5585.081593734451 (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 : 1.91 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.28 us (96.1%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5742.660338265006 (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.00 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.89 us (95.6%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.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 | 6.838e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6024.813802785284 (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.07 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.907e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5958.055009786608 (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 : 1.76 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.54 us (96.3%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.5%)
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 | 7.199e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5710.301342107535 (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 : 1.94 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 163.32 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.0%)
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 | 7.082e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5798.250316107296 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.52 us (96.1%)
LB move op cnt : 0
LB apply : 891.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (67.3%)
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 | 7.550e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5433.720712864609 (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 : 1.73 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.41 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.172e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5714.790395208996 (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 : 1.69 us (1.1%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.64 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.121e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5751.2026302889435 (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 : 1.74 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.79 us (95.5%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.6%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5778.738798083541 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.76 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 901.00 ns (58.8%)
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 | 7.230e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5655.694808881718 (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.00 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 157.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.270e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5620.548154556873 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.60 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (57.7%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5836.958457878019 (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.09 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.4%)
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 | 6.944e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5877.472869866509 (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.02 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.17 us (96.0%)
LB move op cnt : 0
LB apply : 991.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5755.848014983985 (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 : 1.95 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 161.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.4%)
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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5672.254738923287 (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 : 1.72 us (0.9%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 177.23 us (96.5%)
LB move op cnt : 0
LB apply : 1.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.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 = (-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 | 7.416e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5495.484557143866 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.53 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.7%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5753.786475045909 (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.22 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.00 us (95.8%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.2%)
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 | 7.014e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5807.2972201787 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.63 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (58.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 | 7.091e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5743.01791646618 (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 : 1.87 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 144.19 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 6.975e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5836.676707743797 (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 : 1.75 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.22 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 941.00 ns (59.9%)
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 | 6.952e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5855.74443125859 (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 : 1.90 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 6.936e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5868.468194013728 (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.21 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 155.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.5%)
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 | 7.286e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5586.869229753468 (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.12 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.21 us (95.9%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.2%)
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 | 7.049e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5774.343266573954 (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.02 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.67 us (95.9%)
LB move op cnt : 0
LB apply : 1.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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 | 7.187e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5664.376894462899 (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 : 1.66 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.21 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (63.6%)
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 | 7.131e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5709.181099604156 (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 : 1.90 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 172.20 us (96.4%)
LB move op cnt : 0
LB apply : 1.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 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.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 | 7.449e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5466.908183889762 (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 : 1.99 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.28 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.085e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5748.753585950558 (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 : 1.70 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.68 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.7%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5791.62550423288 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 149.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.4%)
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 | 7.292e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5589.120231171754 (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 : 1.97 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 149.63 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (56.3%)
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 | 7.149e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5703.185770714345 (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 : 1.83 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 390.00 ns (0.2%)
LB compute : 160.53 us (96.1%)
LB move op cnt : 0
LB apply : 1.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5600.65548134955 (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 : 1.79 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.13 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.0%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5638.30714676474 (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 : 1.75 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.53 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (60.6%)
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 | 6.814e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5991.827761912937 (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 : 1.99 us (1.3%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.44 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.1%)
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 | 6.900e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5920.964935256406 (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.10 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.99 us (95.6%)
LB move op cnt : 0
LB apply : 1.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (71.1%)
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 | 6.977e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5858.6606690314775 (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.04 us (1.2%)
patch tree reduce : 431.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 161.51 us (96.1%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (67.2%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5776.929382827424 (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.14 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 531.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 490.00 ns (0.3%)
LB compute : 162.17 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (51.2%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5797.884955378491 (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 : 1.69 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 400.00 ns (0.2%)
LB compute : 161.43 us (96.3%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (63.0%)
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 | 7.339e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5581.957238840377 (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 : 1.67 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (62.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 | 7.188e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5704.178815101963 (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 : 1.71 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.34 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.2%)
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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5831.51831014798 (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.14 us (1.4%)
patch tree reduce : 421.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 411.00 ns (0.3%)
LB compute : 149.50 us (95.8%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (60.3%)
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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5796.349833333133 (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.00 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 832.00 ns (57.7%)
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 | 7.217e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5696.058679610252 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.11 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.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 | 6.921e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5945.670513347856 (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.04 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 410.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 143.30 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (63.7%)
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 | 6.792e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6064.783450557613 (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 : 1.93 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.92 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.4%)
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 | 6.923e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5957.146273807381 (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 : 1.73 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.44 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.9%)
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 | 7.169e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5758.646154460792 (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 : 1.94 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.52 us (96.2%)
LB move op cnt : 0
LB apply : 1.28 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5723.465416717608 (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 : 1.72 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 162.07 us (96.3%)
LB move op cnt : 0
LB apply : 1.19 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 us (64.9%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5770.74044077136 (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 : 1.77 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 175.00 us (96.5%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 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.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 | 7.551e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5487.511402842827 (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.07 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.93 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.2%)
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 | 7.208e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5756.03219227278 (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 : 1.74 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 371.00 ns (0.2%)
LB compute : 146.43 us (96.1%)
LB move op cnt : 0
LB apply : 931.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 7.040e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5900.7400169232415 (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 : 1.79 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.58 us (96.2%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.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,-1.3877787807814457e-17,0)
sum e = 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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5771.996981553514 (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.00 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.18 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.136e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5838.116415748756 (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 : 1.83 us (1.2%)
patch tree reduce : 541.00 ns (0.4%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.87 us (96.0%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (56.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 | 7.011e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5950.621869930015 (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 : 1.99 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 144.61 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.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 | 6.968e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5996.122195402189 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.96 us (95.8%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (62.7%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5978.636067692319 (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 : 1.71 us (1.0%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 162.59 us (96.4%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.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 = (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 | 7.184e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5834.2362304089 (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 : 1.82 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.25 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.5%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5973.4273919361485 (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 : 1.91 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.09 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5907.234197523858 (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 : 1.65 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.24 us (96.0%)
LB move op cnt : 0
LB apply : 1.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.7%)
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 | 7.146e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5894.536530238781 (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 : 1.71 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.56 us (96.1%)
LB move op cnt : 0
LB apply : 1.17 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 921.00 ns (60.5%)
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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5835.168466471243 (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 : 1.77 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.55 us (96.1%)
LB move op cnt : 0
LB apply : 971.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 7.081e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5969.779660492034 (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 : 1.81 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.74 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (56.5%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6043.667530427736 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.84 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.1%)
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 | 6.963e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6092.975829526153 (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.19 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 164.99 us (96.0%)
LB move op cnt : 0
LB apply : 1.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 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.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 | 7.322e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5805.27635192959 (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.10 us (1.4%)
patch tree reduce : 600.00 ns (0.4%)
gen split merge : 551.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 142.69 us (95.4%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.6%)
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 | 6.874e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6195.830594906723 (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 : 1.91 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.47 us (88.3%)
LB move op cnt : 0
LB apply : 1.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 931.00 ns (61.2%)
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 | 7.035e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6065.482057460788 (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 : 1.72 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 156.58 us (96.3%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 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.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 | 7.141e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5987.372811205564 (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 : 1.99 us (1.3%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 152.94 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 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,-1.3877787807814457e-17,0)
sum e = 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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6015.436206703753 (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 : 1.86 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 146.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.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 = (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 | 7.160e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5995.960585470142 (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 : 1.99 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.91 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 892.00 ns (59.7%)
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 | 7.171e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5999.030353335055 (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 : 1.71 us (1.1%)
patch tree reduce : 471.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 261.00 ns (0.2%)
LB compute : 143.81 us (95.2%)
LB move op cnt : 0
LB apply : 1.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.9%)
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 | 7.115e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6059.441432186755 (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 : 1.84 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.20 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.10 us (63.2%)
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 | 7.108e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6078.609649018662 (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 : 1.93 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.9%)
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 | 7.042e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6149.043232609796 (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 : 1.78 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 440.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.42 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (59.3%)
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 | 6.759e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6420.0382532133 (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 : 1.89 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.82 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.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 | 6.984e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6227.841905505816 (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.26 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 158.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (62.1%)
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 | 7.047e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6185.868970648962 (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 : 1.64 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 160.06 us (96.3%)
LB move op cnt : 0
LB apply : 1.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (64.2%)
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 | 7.271e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6009.861416549098 (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.06 us (1.2%)
patch tree reduce : 721.00 ns (0.4%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 631.00 ns (0.4%)
LB compute : 157.74 us (95.0%)
LB move op cnt : 0
LB apply : 1.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (57.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 = (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 | 7.156e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6120.360479655494 (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 : 1.78 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.72 us (96.1%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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.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 | 7.103e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6180.442812450365 (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 : 1.80 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 142.75 us (95.9%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.9%)
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 | 7.296e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6031.901750100664 (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.16 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 149.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (-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 | 7.033e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6272.300140679909 (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 : 1.96 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 153.94 us (96.1%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (65.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 | 7.231e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6116.072326272439 (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.04 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.20 us (95.8%)
LB move op cnt : 0
LB apply : 1.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (60.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,-1.3877787807814457e-17,0)
sum e = 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 | 7.125e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6222.281357263124 (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 : 1.75 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.73 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.2%)
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 | 6.836e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6502.054048545232 (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.00 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 143.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.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 = (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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6519.635844349308 (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 : 1.66 us (1.0%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.64 us (96.5%)
LB move op cnt : 0
LB apply : 1.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.060e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6328.044039182311 (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 : 1.74 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.86 us (96.4%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (65.1%)
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 | 7.083e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6323.587985636753 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 147.57 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (58.6%)
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 | 7.214e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6225.9256021012625 (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 : 1.94 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 150.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (60.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,2.7755575615628914e-17,0)
sum e = 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 | 7.248e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6213.191644949365 (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 : 1.71 us (1.1%)
patch tree reduce : 391.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 150.48 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 821.00 ns (58.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 | 7.336e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6155.143514975548 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.18 us (96.1%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (61.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 = (-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 | 7.086e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6389.246544517853 (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 : 1.72 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 167.60 us (96.5%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.3%)
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 | 7.283e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6233.810302738027 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.057e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6450.570044476753 (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 : 1.87 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (57.4%)
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 | 6.991e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6529.916547737196 (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.08 us (1.4%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.09 us (95.8%)
LB move op cnt : 0
LB apply : 1.15 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.958e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6579.484177103781 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.09 us (95.9%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (56.2%)
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 | 6.835e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6716.393564292266 (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.00 us (1.2%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.32 us (96.0%)
LB move op cnt : 0
LB apply : 1.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.1%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6509.47360116239 (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 : 1.93 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 157.70 us (96.0%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 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.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 | 7.303e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6322.3383712844525 (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 : 1.86 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (61.6%)
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 | 7.007e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6608.974512317405 (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 : 1.67 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.78 us (96.2%)
LB move op cnt : 0
LB apply : 962.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.253e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6403.705019154973 (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 : 1.88 us (1.1%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 168.09 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.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 | 7.297e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6383.803080607561 (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 : 1.79 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.49 us (96.1%)
LB move op cnt : 0
LB apply : 961.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (57.8%)
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 | 7.116e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6565.779557123988 (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 : 1.94 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.23 us (95.8%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (54.6%)
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 | 6.953e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6739.354789895222 (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 : 1.83 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 145.98 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (58.9%)
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 | 6.897e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6814.89563314288 (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.08 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.70 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.5%)
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 | 6.867e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6865.2501479047405 (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 : 1.96 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 163.80 us (96.3%)
LB move op cnt : 0
LB apply : 1.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 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.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 | 7.260e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6513.224871459173 (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 : 1.98 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 300.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.68 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.2%)
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 | 6.818e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6956.808723029616 (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 : 1.87 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 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.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 | 7.234e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6576.481716600063 (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 : 1.68 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.42 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (62.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 | 6.925e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6891.483143840319 (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 : 1.76 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.62 us (96.0%)
LB move op cnt : 0
LB apply : 1.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (59.1%)
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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6777.23074558913 (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 : 1.90 us (1.2%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 151.20 us (96.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (58.8%)
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 | 7.133e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6732.623136424194 (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 : 1.89 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.05 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 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.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 | 7.088e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6796.88730984149 (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 : 1.90 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.77 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (-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 | 7.328e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6594.867663760538 (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 : 1.80 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.62 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (56.8%)
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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6731.494338560173 (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 : 1.78 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 161.01 us (96.2%)
LB move op cnt : 0
LB apply : 1.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (69.0%)
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 | 7.115e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6835.922289530552 (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 : 1.92 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.52 us (95.8%)
LB move op cnt : 0
LB apply : 1.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (59.3%)
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 | 6.719e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7262.297814088465 (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.12 us (1.4%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.71 us (95.8%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 992.00 ns (63.5%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6951.838807293524 (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 : 1.77 us (1.0%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 166.33 us (96.5%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (64.4%)
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 | 7.183e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6837.236906026845 (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 : 1.98 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 159.64 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (60.9%)
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 | 7.062e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6976.109856738565 (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 : 1.78 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 162.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.17 us (63.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 | 7.268e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6800.897265914446 (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 : 1.67 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.22 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.077e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7007.537923480579 (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 : 1.72 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 143.61 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 801.00 ns (56.3%)
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 | 7.027e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7080.687986484152 (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 : 1.82 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 144.44 us (95.9%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.09 us (61.9%)
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 | 7.271e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6865.494866279035 (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 : 1.80 us (1.2%)
patch tree reduce : 591.00 ns (0.4%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 441.00 ns (0.3%)
LB compute : 148.31 us (95.7%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.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 | 7.202e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6954.331673949897 (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 : 1.98 us (1.3%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.20 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.4%)
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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7114.662089144767 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 143.60 us (95.8%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (58.7%)
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 | 6.800e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7414.336188156809 (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.32 us (1.5%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.96 us (95.5%)
LB move op cnt : 0
LB apply : 1.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (71.8%)
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 | 7.002e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7225.014449485686 (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 : 1.95 us (1.1%)
patch tree reduce : 460.00 ns (0.3%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (65.2%)
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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7126.375268586441 (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.10 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 461.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 157.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (54.2%)
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 | 7.185e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7088.313872426492 (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 : 1.87 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.02 us (95.9%)
LB move op cnt : 0
LB apply : 982.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (61.6%)
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 | 6.967e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7334.353251833971 (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 : 1.86 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 156.18 us (96.2%)
LB move op cnt : 0
LB apply : 1.09 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (60.9%)
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 | 7.323e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7001.296652508033 (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.03 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 159.40 us (96.0%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (62.5%)
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 | 7.513e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6846.949015148904 (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 : 1.81 us (1.2%)
patch tree reduce : 440.00 ns (0.3%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 380.00 ns (0.3%)
LB compute : 145.56 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.3%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7315.072161136359 (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 : 1.71 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 161.48 us (96.4%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.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 = (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 | 7.176e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7217.779787842656 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.30 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 942.00 ns (60.7%)
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 | 7.049e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7372.0547080615415 (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 : 1.73 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 143.79 us (96.1%)
LB move op cnt : 0
LB apply : 941.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.4%)
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 | 6.978e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7472.7372875845085 (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.00 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.69 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.789e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7706.570279862373 (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 : 1.91 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (58.8%)
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 | 6.910e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7597.937009423778 (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 : 1.94 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 162.53 us (96.3%)
LB move op cnt : 0
LB apply : 1.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (62.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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7470.785527111593 (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 : 1.70 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.60 us (96.2%)
LB move op cnt : 0
LB apply : 972.00 ns (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 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.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 | 7.295e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7246.327316324447 (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 : 1.88 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 147.15 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (57.7%)
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 | 7.155e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7413.206567583727 (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 : 1.98 us (1.2%)
patch tree reduce : 321.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 160.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.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 = (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 | 7.207e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7385.036870371661 (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 : 1.90 us (1.3%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.2%)
LB compute : 144.83 us (95.9%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.7%)
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 | 7.028e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7598.712777134135 (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 : 1.73 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.76 us (96.0%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.8%)
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 | 6.994e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7661.647000658734 (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 : 1.80 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.16 us (96.2%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.8%)
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 | 7.386e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7280.5027600515195 (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 : 1.86 us (1.2%)
patch tree reduce : 561.00 ns (0.4%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.01 us (95.9%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.0%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7724.196643909954 (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 : 1.95 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.34 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (57.5%)
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 | 6.777e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7989.381837383344 (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.02 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.247e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7496.486285924377 (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.14 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 147.95 us (95.8%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.0%)
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 | 7.061e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7719.954892359373 (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 : 1.78 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 174.48 us (96.5%)
LB move op cnt : 0
LB apply : 1.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (66.5%)
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 | 7.128e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7673.675334848379 (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 : 1.69 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.10 us (96.1%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 us (60.0%)
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 | 7.119e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7710.424340592448 (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 : 1.60 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.16 us (96.1%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (60.3%)
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 | 7.170e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7680.9142945832455 (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 : 1.75 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.57 us (96.2%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 932.00 ns (60.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 = (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 | 7.122e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7759.59196871028 (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 : 1.88 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 144.18 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (60.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,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 | 7.071e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7841.515524882951 (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 : 1.87 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 149.29 us (96.1%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (58.3%)
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 | 7.105e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7831.192017804302 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.01 us (96.0%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 971.00 ns (61.8%)
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 | 6.826e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8178.91272496472 (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.03 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 142.87 us (95.7%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (61.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,1.3877787807814457e-17,0)
sum e = 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 | 7.037e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7960.253574476347 (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.20 us (1.5%)
patch tree reduce : 531.00 ns (0.4%)
gen split merge : 501.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 144.36 us (95.4%)
LB move op cnt : 0
LB apply : 1.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.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 = (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 | 6.812e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8250.843342732505 (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 : 1.68 us (1.0%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 164.06 us (96.5%)
LB move op cnt : 0
LB apply : 1.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 981.00 ns (61.2%)
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 | 7.179e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7855.844073674556 (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 : 1.75 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 156.74 us (96.2%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (66.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.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 | 6.950e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8141.914916145144 (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.01 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.43 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (60.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 | 7.063e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8039.150377638315 (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 : 1.95 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 152.93 us (96.1%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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 = (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 | 7.403e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7695.699129694082 (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 : 1.87 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.31 us (96.0%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 841.00 ns (58.3%)
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 | 7.400e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7724.653741621011 (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 : 1.81 us (1.2%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 144.56 us (95.2%)
LB move op cnt : 0
LB apply : 1.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 982.00 ns (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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8023.830886395213 (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.06 us (1.4%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 144.09 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.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 = (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 | 6.970e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8256.167387483794 (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 : 1.79 us (1.1%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 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.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 | 7.241e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7973.596446777389 (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.14 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 430.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 146.01 us (95.6%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.4%)
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 | 7.186e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8061.1388645350935 (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.00 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 147.64 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (58.3%)
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 | 7.102e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8183.944019679926 (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.03 us (1.3%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 146.25 us (95.5%)
LB move op cnt : 0
LB apply : 1.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (72.9%)
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 | 7.206e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8091.994735535595 (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 : 1.76 us (1.0%)
patch tree reduce : 511.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 164.08 us (95.8%)
LB move op cnt : 0
LB apply : 1.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (59.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 = (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 | 7.064e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8281.434894092687 (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.20 us (1.4%)
patch tree reduce : 490.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 771.00 ns (0.5%)
LB compute : 144.72 us (95.1%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (60.2%)
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 | 6.962e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8430.672883246076 (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 : 1.96 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.00 us (95.7%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 902.00 ns (60.0%)
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 | 6.871e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8569.830790794955 (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.06 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 260.00 ns (0.2%)
LB compute : 162.87 us (96.2%)
LB move op cnt : 0
LB apply : 1.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (64.0%)
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 | 7.025e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8409.735969395759 (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 : 1.80 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 143.90 us (96.1%)
LB move op cnt : 0
LB apply : 991.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.28 us (65.3%)
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 | 7.073e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8378.982366200229 (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 : 1.81 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.58 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 = (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 | 7.163e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8300.413465323343 (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 : 1.76 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 157.61 us (96.3%)
LB move op cnt : 0
LB apply : 1.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8329.678369739906 (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 : 1.76 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 142.25 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (62.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 = (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 | 6.881e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8696.299457036352 (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 : 1.78 us (1.2%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.66 us (96.0%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (57.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 = (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 | 6.882e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8722.625771217483 (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 : 1.86 us (1.2%)
patch tree reduce : 380.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 143.31 us (95.7%)
LB move op cnt : 0
LB apply : 1.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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 | 6.782e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8879.645908970553 (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.05 us (1.4%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.10 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (54.4%)
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 | 6.893e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8763.99459190411 (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.01 us (1.3%)
patch tree reduce : 390.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 146.49 us (95.9%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.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 | 6.853e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8841.734680402196 (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 : 1.72 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.89 us (96.4%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (64.0%)
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 | 7.321e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8302.709648918297 (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 : 1.96 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 172.41 us (96.3%)
LB move op cnt : 0
LB apply : 1.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.14 us (64.4%)
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 | 7.095e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8593.692909302566 (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 : 1.74 us (1.2%)
patch tree reduce : 371.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.08 us (96.1%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.00 us (59.5%)
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 | 6.941e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8810.994136917418 (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 : 1.77 us (1.1%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.44 us (96.2%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 792.00 ns (55.7%)
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 | 7.264e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8445.266858310157 (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 : 1.89 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 154.10 us (96.2%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (59.4%)
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 | 7.558e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8141.63993576995 (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 : 1.77 us (1.1%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.85 us (96.2%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (57.8%)
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 | 7.148e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8634.622982328257 (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 : 1.71 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.87 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.1%)
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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8501.205478514878 (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 : 1.73 us (1.0%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 160.28 us (96.2%)
LB move op cnt : 0
LB apply : 1.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.20 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.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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8621.6951624532 (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 : 1.96 us (1.3%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 146.26 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 922.00 ns (61.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,5.551115123125783e-17,0)
sum e = 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 | 6.843e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9099.044532672982 (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 : 1.98 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 147.86 us (96.0%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (61.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 | 7.068e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8835.414132704975 (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.09 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 171.77 us (96.4%)
LB move op cnt : 0
LB apply : 1.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.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,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 | 7.263e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8623.099910251683 (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 : 1.94 us (1.0%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 12.98 us (6.8%)
split / merge op : 0/0
apply split merge : 341.00 ns (0.2%)
LB compute : 171.19 us (89.8%)
LB move op cnt : 0
LB apply : 1.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (69.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 | 7.367e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8526.52808399017 (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 : 1.70 us (1.0%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 158.42 us (96.3%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 951.00 ns (60.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.3877787807814457e-17,0)
sum e = 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 | 7.134e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8830.408704941978 (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 : 1.81 us (1.2%)
patch tree reduce : 370.00 ns (0.3%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 141.97 us (96.0%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (60.7%)
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 | 6.915e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9135.7278975704 (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 : 1.94 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.77 us (95.8%)
LB move op cnt : 0
LB apply : 1.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (66.8%)
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 | 7.060e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8973.13375589268 (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 : 1.72 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.02 us (96.2%)
LB move op cnt : 0
LB apply : 1.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.07 us (63.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 = (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 | 7.435e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8543.692596513514 (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.13 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 301.00 ns (0.2%)
LB compute : 147.31 us (95.8%)
LB move op cnt : 0
LB apply : 1.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 912.00 ns (59.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 | 7.277e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8754.095448320226 (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 : 1.88 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 148.82 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 831.00 ns (57.2%)
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 | 7.056e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9053.08239619907 (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 : 1.78 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 155.69 us (96.2%)
LB move op cnt : 0
LB apply : 1.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.238e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8849.339552324644 (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 : 1.95 us (1.3%)
patch tree reduce : 381.00 ns (0.3%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 145.14 us (95.9%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.9%)
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 | 6.896e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9313.228706677572 (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.06 us (1.2%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 158.63 us (96.1%)
LB move op cnt : 0
LB apply : 1.20 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.18 us (65.9%)
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 | 7.033e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9156.258417335199 (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 : 1.90 us (1.3%)
patch tree reduce : 470.00 ns (0.3%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 145.90 us (96.0%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 952.00 ns (62.1%)
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 | 7.067e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9136.192636940868 (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 : 1.99 us (1.2%)
patch tree reduce : 341.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 163.87 us (96.3%)
LB move op cnt : 0
LB apply : 1.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 7.255e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8922.196462789603 (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 : 1.88 us (1.1%)
patch tree reduce : 380.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 162.11 us (96.3%)
LB move op cnt : 0
LB apply : 1.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 7.181e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9038.31944543256 (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 : 1.85 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 150.60 us (96.0%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 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.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 | 7.092e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9174.01679603811 (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 : 1.67 us (1.1%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 301.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 145.35 us (96.2%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 852.00 ns (59.5%)
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 | 7.080e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9213.598864761756 (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.05 us (1.3%)
patch tree reduce : 331.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.23 us (96.0%)
LB move op cnt : 0
LB apply : 1.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (67.7%)
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 | 7.380e-04 | 0.5% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8861.077458620695 (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 : 1.90 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 145.58 us (95.8%)
LB move op cnt : 0
LB apply : 1.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 891.00 ns (60.1%)
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 | 7.112e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9218.096277946768 (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.31 us (1.5%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 148.70 us (95.7%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 861.00 ns (58.5%)
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 | 7.222e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9099.13169039477 (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 : 1.88 us (1.2%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 148.83 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (58.5%)
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 | 7.129e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9240.23432322107 (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 : 1.77 us (1.2%)
patch tree reduce : 340.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 144.43 us (96.1%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.23 us (63.1%)
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 | 6.996e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9437.77620787306 (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 : 1.89 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 147.03 us (96.0%)
LB move op cnt : 0
LB apply : 1.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 862.00 ns (59.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,2.7755575615628914e-17,0)
sum e = 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 | 6.895e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9599.56468366425 (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 : 1.93 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 142.84 us (95.9%)
LB move op cnt : 0
LB apply : 992.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.0%)
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 | 6.791e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9769.130954655808 (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 : 1.73 us (1.0%)
patch tree reduce : 601.00 ns (0.4%)
gen split merge : 441.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 440.00 ns (0.3%)
LB compute : 159.07 us (95.9%)
LB move op cnt : 0
LB apply : 1.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 991.00 ns (61.4%)
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 | 7.101e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9363.514333541338 (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 : 1.90 us (1.2%)
patch tree reduce : 581.00 ns (0.4%)
gen split merge : 421.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 410.00 ns (0.3%)
LB compute : 155.23 us (95.7%)
LB move op cnt : 0
LB apply : 1.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.19 us (64.3%)
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 | 7.287e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9145.248083181383 (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 : 1.64 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 144.75 us (96.2%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (59.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 = (-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 | 7.142e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9352.082487186084 (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.04 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 153.33 us (95.9%)
LB move op cnt : 0
LB apply : 1.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (63.5%)
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 | 7.161e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9346.772013711552 (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 : 1.84 us (1.1%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 157.25 us (96.2%)
LB move op cnt : 0
LB apply : 1.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 962.00 ns (61.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 = (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 | 7.294e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9196.287721935161 (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.17 us (1.4%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 148.27 us (95.8%)
LB move op cnt : 0
LB apply : 1.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 851.00 ns (58.6%)
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 | 7.052e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9532.3053333861 (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.08 us (1.4%)
patch tree reduce : 461.00 ns (0.3%)
gen split merge : 451.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 401.00 ns (0.3%)
LB compute : 144.80 us (95.4%)
LB move op cnt : 0
LB apply : 1.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (50.8%)
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 | 7.518e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8960.759847802661 (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 : 1.92 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 381.00 ns (0.3%)
LB compute : 145.89 us (95.8%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.02 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.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 | 6.828e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9886.435374708615 (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 : 1.96 us (1.3%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 143.10 us (95.9%)
LB move op cnt : 0
LB apply : 1.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 842.00 ns (59.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 | 6.764e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9999.752623663206 (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.08 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 271.00 ns (0.2%)
LB compute : 146.25 us (95.7%)
LB move op cnt : 0
LB apply : 1.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 911.00 ns (60.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.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 | 6.817e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9941.047342568949 (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 : 1.89 us (1.1%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.2%)
LB compute : 160.26 us (96.1%)
LB move op cnt : 0
LB apply : 1.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 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.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 | 7.153e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9493.577503647219 (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 : 1.66 us (1.1%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 142.81 us (96.1%)
LB move op cnt : 0
LB apply : 981.00 ns (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.06 us (63.5%)
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 | 6.985e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9739.708421926996 (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 : 1.90 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.87 us (95.9%)
LB move op cnt : 0
LB apply : 1.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.58 us (95.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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9737.129351640833 (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 : 1.88 us (1.3%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 431.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 143.65 us (95.9%)
LB move op cnt : 0
LB apply : 1.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 872.00 ns (60.5%)
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 | 7.206e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9476.41215538032 (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 : 1.85 us (1.2%)
patch tree reduce : 351.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 145.19 us (96.0%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.01 us (62.7%)
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 | 6.999e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9774.252075162782 (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 : 1.72 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 331.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 164.57 us (96.4%)
LB move op cnt : 0
LB apply : 1.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 us (63.7%)
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 | 7.201e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9517.116415394816 (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 : 1.99 us (1.1%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 169.36 us (96.3%)
LB move op cnt : 0
LB apply : 1.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.05 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.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 | 7.315e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9385.938529913248 (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 : 1.98 us (1.3%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 151.75 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (59.6%)
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 | 7.041e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9767.440072702497 (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 : 1.97 us (1.3%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 300.00 ns (0.2%)
LB compute : 145.46 us (95.9%)
LB move op cnt : 0
LB apply : 1.05 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 882.00 ns (59.5%)
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 | 7.527e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9152.236306153263 (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.33 us (1.4%)
patch tree reduce : 371.00 ns (0.2%)
gen split merge : 310.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 156.95 us (95.6%)
LB move op cnt : 0
LB apply : 1.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.03 us (62.0%)
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 | 7.087e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9736.692652516556 (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.11 us (1.4%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 330.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 291.00 ns (0.2%)
LB compute : 146.44 us (95.9%)
LB move op cnt : 0
LB apply : 1.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 881.00 ns (55.0%)
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 | 6.919e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9988.824866454672 (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 : 1.73 us (1.0%)
patch tree reduce : 350.00 ns (0.2%)
gen split merge : 341.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 280.00 ns (0.2%)
LB compute : 161.05 us (96.4%)
LB move op cnt : 0
LB apply : 1.15 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 972.00 ns (61.8%)
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 | 7.000e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9887.85855819202 (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.04 us (1.2%)
patch tree reduce : 370.00 ns (0.2%)
gen split merge : 311.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 270.00 ns (0.2%)
LB compute : 160.73 us (95.8%)
LB move op cnt : 0
LB apply : 1.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.04 us (63.8%)
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 | 7.221e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9600.56738580165 (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 : 1.85 us (1.2%)
patch tree reduce : 360.00 ns (0.2%)
gen split merge : 321.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 153.08 us (96.2%)
LB move op cnt : 0
LB apply : 1.02 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (62.1%)
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 | 7.281e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9534.646907469363 (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 : 1.92 us (1.2%)
patch tree reduce : 381.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 281.00 ns (0.2%)
LB compute : 149.21 us (96.1%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 871.00 ns (56.1%)
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 | 7.140e-04 | 0.4% | 0.0% 0.0% | 1.08 GB | 5.29 MB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9737.922658499663 (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 : 1.84 us (1.2%)
patch tree reduce : 361.00 ns (0.2%)
gen split merge : 320.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 290.00 ns (0.2%)
LB compute : 142.91 us (95.9%)
LB move op cnt : 0
LB apply : 1.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 811.00 ns (55.9%)
Info: free boundaries skipping geometry update [PositionUpdated][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (9.020562075079397e-17,3.122502256758